-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 949 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 949 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
37
38
39
40
41
[project]
name = "trifold"
dynamic = ["version"]
description = "Sample project with React and FastAPI on Databricks Apps"
readme = "README.md"
authors = [{ name = "renardeinside", email = "polarpersonal@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
"asyncpg>=0.30.0",
"databricks-sdk>=0.58.0",
"fastapi>=0.116.1",
"loguru>=0.7.3",
"psycopg2-binary>=2.9.10",
"pydantic-settings>=2.10.1",
"sqlmodel>=0.0.24",
"uvicorn>=0.35.0",
]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"hatchling>=1.27.0",
"locust>=2.37.14",
"ruff>=0.12.4",
]
[tool.uv-dynamic-versioning]
format = "v{base}+{commit}.{timestamp}"
[tool.hatch.build.hooks.custom]
path = "hooks/app_build.py"
[tool.hatch.build]
artifacts = ["src/trifold/app/static/dist"]
exclude = ["src/trifold/ui"]