-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.15 KB
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
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nichart-api"
version = "0.1.1"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.111",
"uvicorn[standard]>=0.29",
"pydantic>=2.7",
"pydantic-settings>=2.2",
"PyJWT>=2.8",
"cryptography>=42.0",
"PyYAML>=6.0",
"httpx>=0.27",
"python-multipart>=0.0.9",
"boto3>=1.34",
"docker>=7.0",
"pydicom>=2.4",
"typer>=0.12",
"rich>=13.0",
]
[project.scripts]
nichart = "app.cli:main"
nichart-mcp = "app.mcp_server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"anyio[trio]>=4.3",
]
mcp = [
"mcp>=1.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
packages = ["app"]
# Ship the pipeline/tool YAMLs (and other reference data) inside the installed
# package at app/resources, so a non-editable `pip install` / `uv` install yields
# a server that runs from any directory — no repo checkout required. In an
# editable/dev install this isn't materialized; the top-level resources/ is used.
[tool.hatch.build.targets.wheel.force-include]
"resources" = "app/resources"