-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 935 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 935 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
42
43
44
45
[project]
name = "antsarray"
version = "0.1.0"
description = "AntsArray analysis and tracking pipeline"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"pandas",
"pyarrow",
"matplotlib",
"scipy",
"shapely>=2,<3",
"scikit-learn",
"joblib",
"umap-learn",
"igraph",
"leidenalg",
"statsmodels",
"tqdm",
"h5py",
"tables",
"opencv-python",
"pillow",
"torch",
"torchvision",
"segmentation-models-pytorch",
"sleap-io",
]
[project.optional-dependencies]
interactive = ["plotly>=5,<7"]
test = ["pytest"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = false
[tool.pytest.ini_options]
testpaths = ["analysis", "tracking", "camera_cal", "scripts", "detection_pipeline", "group_labelling"]
# Exploratory *_test.py scripts execute real datasets when imported.
python_files = ["test_*.py"]