-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "anima-coonhound"
version = "0.3.0"
description = "MambaNUT nighttime UAV tracking — Vision Mamba backbone with ACL for ANIMA Wave-10 WARDOG"
requires-python = ">=3.10"
dependencies = [
"numpy",
"torch>=2.0",
"torchvision",
"torchaudio",
"ultralytics>=8.3",
"tomli>=2.0.1; python_version < '3.11'",
"pillow",
"scipy",
"tqdm",
]
[project.optional-dependencies]
mlx = ["mlx>=0.10", "mlx-nn"]
serve = ["fastapi>=0.100", "uvicorn", "python-multipart"]
export = ["safetensors", "onnx>=1.14"]
dev = ["pytest", "ruff", "pre-commit"]
all = ["anima-coonhound[mlx,serve,export,dev]"]
[project.scripts]
anima-coonhound = "anima_coonhound.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/anima_coonhound"]
[tool.uv]
extra-index-url = ["https://download.pytorch.org/whl/cu128"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "B", "UP", "N", "C4"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]