-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (52 loc) · 2.08 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tracker-eval"
version = "1.0.0"
description = "Self-contained 3D pedestrian tracker evaluation and RA-L analysis pipeline."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{name = "Dominik Wojcikiewicz"}]
dependencies = [
"numpy>=1.24,<1.25",
"scipy>=1.8,<1.9",
"PyYAML>=6,<7",
"pandas>=2.3,<2.4",
"matplotlib>=3.10,<3.11",
"tqdm>=4.67,<4.68",
"shapely>=2.0,<2.1",
"numba>=0.58,<0.59",
"llvmlite>=0.41,<0.42",
"pyquaternion==0.9.9",
"easydict>=1.13,<1.14",
"filterpy==1.4.5",
"pybind11>=2.10,<3",
"lap==0.5.12",
]
[project.optional-dependencies]
notebooks = ["jupyterlab>=4", "ipykernel>=6"]
dev = ["build>=1", "pytest>=7"]
[project.urls]
Repository = "https://github.com/Draxran/tracker_eval"
PedRefTrack = "https://github.com/Draxran/PedRefTrack"
[project.scripts]
tracker-eval = "tracker_eval.cli.run_tracker:main"
tracker-eval-build = "tracker_eval.cli.build_tracker:main"
tracker-eval-generate-pseudo = "tracker_eval.cli.generate_pseudo_detections_from_gt:main"
tracker-eval-pseudo = "tracker_eval.cli.run_pseudo_variants:main"
tracker-eval-prepare-gt = "tracker_eval.evaluation.prepare_gt:main"
tracker-eval-evaluate = "tracker_eval.evaluation.cli:main"
tracker-eval-protocol = "tracker_eval.protocol.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["tracker_eval*", "trackeval*"]
[tool.setuptools.package-data]
"tracker_eval.cli" = ["*.yaml"]
"tracker_eval.trackers.implementations.cbmot" = ["LICENSE", "UPSTREAM_README.md"]
"tracker_eval.trackers.implementations.elptnet" = ["*.yaml", "LICENSE", "UPSTREAM_README.md"]
"tracker_eval.trackers.implementations.fastpoly" = ["UPSTREAM_README.md", "config/*.yaml"]
"tracker_eval.trackers.implementations.gnnpmb" = ["UPSTREAM_README.md", "config/*.json"]
"tracker_eval.trackers.implementations.gnnpmb.murty" = ["CMakeLists.txt", "UPSTREAM_README.md", "src/*.cpp", "src/*.hpp"]
"tracker_eval.trackers.implementations.simpletrack" = ["LICENSE", "UPSTREAM_README.md", "configs/*.yaml"]