-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 1.23 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
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sbh-mouse-rag"
version = "0.0.0"
requires-python = ">=3.10,<3.12"
dependencies = [
"numpy>=1.26,<3",
"scipy",
"pandas",
"tqdm",
"pillow",
"requests",
"pyyaml",
"python-dotenv",
"opencv-python",
"torch",
"torchvision",
"torchaudio",
"transformers==4.56.0",
"tokenizers",
"accelerate",
"sentence-transformers",
"huggingface-hub",
"safetensors",
"timm",
"faiss-cpu",
"scikit-image",
"imageio",
"tifffile",
"scikit-learn",
"google-cloud-storage"
]
[project.optional-dependencies]
allen = [
"numpy<1.24",
"allensdk>=2.16",
"simpleitk",
"nibabel",
"monai"
]
api = [
"fastapi",
"uvicorn[standard]",
"pydantic",
"pydantic-settings",
"SQLAlchemy",
"psycopg2-binary"
]
research = [
"mlflow",
"optuna"
]
full = [
"allensdk>=2.16",
"simpleitk",
"nibabel",
"monai",
"fastapi",
"uvicorn[standard]",
"pydantic",
"pydantic-settings",
"SQLAlchemy",
"psycopg2-binary",
"mlflow",
"optuna"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["index*", "volume*"]
[tool.uv]
python-preference = "managed"