-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.09 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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "XREPORT"
version = "2.1"
requires-python = ">=3.14"
dependencies = [
"fastapi==0.128.0",
"uvicorn[standard]==0.42.0",
"pydantic==2.12.0",
"pydantic-settings==2.11.0",
"torch==2.10.0+cu130",
"torchvision==0.25.0+cu130",
"keras==3.13.1",
"numpy==2.4.1",
"pandas==3.0.0",
"tqdm==4.67.1",
"SQLAlchemy==2.0.46",
"psycopg[binary]==3.3.1",
"python-dotenv==1.2.1",
"python-multipart>=0.0.21",
"pillow==12.0.0",
"transformers==4.57.3",
"opencv-python==4.13.0.90",
"nltk==3.9.2",
"matplotlib==3.10.8",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-playwright>=0.5.0",
"psutil>=6.1.1",
"ruff==0.15.9"
]
[tool.hatch.build.targets.wheel]
packages = ["XREPORT"]
[[tool.uv.index]]
name = "pytorch-cu130"
url = "https://download.pytorch.org/whl/cu130"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cu130" }
torchvision = { index = "pytorch-cu130" }
# torchaudio = { index = "pytorch-cu130" }