-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 771 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "knot"
dynamic = ["version"]
description = "Example project for Databricks Apps with UI bunded via Vite and FastAPI"
readme = "README.md"
authors = [
{ name = "renardeinside", email = "polarpersonal@gmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.12",
"uvicorn>=0.34.2",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"hatchling>=1.27.0",
]
[tool.hatch.build.hooks.custom]
path = "hooks/build.py"
[tool.hatch.build.targets.wheel]
# we need to explicitly include this folder because it's .gitignore'd
artifacts = ["src/knot/static"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/knot/_version.py"