-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.22 KB
/
pyproject.toml
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
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
]
name = "vod-devkit"
version = "1.1.2"
description = "The official devkit of the View-of-Delft Prediction dataset."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"cachetools",
"descartes",
"fire",
"matplotlib",
"numpy",
"opencv-python",
"Pillow",
"pyquaternion",
"scikit-learn",
"scipy",
"Shapely",
"tqdm",
"notebook"
]
[project.optional-dependencies]
dev = ["black", "isort", "pytest", "pytest-xdist", "twine", "build"]
prediction = ["torch>=1.3.1", "torchvision>=0.4.2"]
tracking = ["motmetrics<=1.1.3", "pandas>=0.24"]
[project.urls]
"Homepage" = "https://intelligent-vehicles.org/datasets/view-of-delft/"
"Code" = "https://github.com/tudelft-iv/view-of-delft-prediction-devkit"
"Bug Tracker" = "https://github.com/tudelft-iv/view-of-delft-prediction-devkit/issues"