-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (65 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rarelink"
version = "0.1.0"
description = "Agentic federated research console for rare disease studies"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
dependencies = [
"alembic>=1.14,<2",
"cryptography>=43,<50",
"fastapi>=0.115,<1",
"psycopg[binary]>=3.2,<4",
"uvicorn[standard]>=0.30,<1",
"sqlmodel>=0.0.22,<1",
"pydantic-settings>=2.6,<3",
"PyJWT[crypto]>=2.10,<3",
"openai>=1.55,<2",
"opentelemetry-api>=1.29,<2",
"opentelemetry-exporter-otlp-proto-http>=1.29,<2",
"opentelemetry-sdk>=1.29,<2",
"prometheus-client>=0.21,<1",
"pyyaml>=6,<7",
]
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"httpx>=0.27,<1",
"nibabel>=5.3,<6",
"numpy>=2,<3",
"pydicom>=3,<4",
"pytest>=9.0.3,<10",
"pytest-cov>=6,<7",
"ruff>=0.8,<1",
]
spark = [
"monai>=1.4,<2",
"numpy>=2,<3",
"nibabel>=5.3,<6",
"nvflare>=2.8.1,<2.9",
"opacus>=1.5,<2",
"scipy>=1.14,<2",
]
security = [
"adversarial-robustness-toolbox==1.20.1",
]
site-data = [
"monai>=1.4,<2",
"numpy>=2,<3",
"nibabel>=5.3,<6",
"pydicom>=3,<4",
"pybids>=0.18,<1",
]
[tool.hatch.build.targets.wheel]
packages = ["rarelink"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]