forked from TrackingLaboratory/tracklab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.47 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
[project]
name = "tracklab"
version = "1.3.23"
description = "A Modular End-to-End Tracking Framework for Research and Development"
readme = "README.md"
authors = [
{ name = "Victor Joos", email = "victorjoosdtb@gmail.com" },
{ name = "Baptiste Standaert", email = "baptiste.standaert@uclouvain.be"},
{ name = "Vladimir Somers", email = "vladimir.somers@uclouvain.be"},
]
requires-python = ">=3.9"
dependencies = [
"hydra-core",
"lightning",
"pytorch_lightning",
"numpy",
"ultralytics",
"filterpy",
"torch",
"torchvision",
"soccernet",
"yt-dlp",
"gdown",
"pandas",
"matplotlib",
"rich",
"tabulate",
"sn-trackeval",
"lap",
"distinctipy",
"rtmlib",
"transformers",
"accelerate",
"huggingface-hub",
"opencv-python",
"tqdm",
"omegaconf",
"requests",
"wandb",
"scipy",
"yacs",
"scikit-image",
]
[dependency-groups]
dev = [
"tracklab",
"sphinx",
"sphinx_rtd_theme",
"myst-parser",
]
[project.scripts]
tracklab = "tracklab.main:main"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [".", "plugins/track"]
include = ["tracklab*", "bot_sort*", "bpbreid_strong_sort*", "byte_track*",
"deep_oc_sort*", "oc_sort*", "strong_sort*", "hydra_plugins.*"]
exclude = []
[tool.setuptools.package-data]
"*" = ["*.txt", "*.rst", "*.yaml"]
[tool.uv]
no-build-isolation-package = ["chumpy"]