-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
51 lines (47 loc) · 1.35 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
47
48
49
50
51
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools>=58", "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 = "trajdata"
version = "1.4.0"
authors = [{ name = "Boris Ivanovic", email = "[email protected]" }]
description = "A unified interface to many trajectory forecasting datasets."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy>=1.19",
"tqdm>=4.62",
"matplotlib>=3.5",
"dill>=0.3.4",
"pandas>=1.4.1",
"pyarrow>=7.0.0",
"torch>=1.10.2",
"zarr>=2.11.0",
"kornia>=0.6.4",
"seaborn>=0.12",
"bokeh>=3.0.3",
"geopandas>=0.13.2",
"protobuf==3.19.4",
"scipy>=1.9.0",
"opencv-python>=4.5.0",
"shapely>=2.0.0",
]
[project.optional-dependencies]
av2 = ["av2==0.2.1"]
dev = ["black", "isort", "pytest", "pytest-xdist", "twine", "build"]
interaction = ["lanelet2==1.2.1"]
lyft = ["l5kit==1.5.0"]
nusc = ["nuscenes-devkit==1.1.9"]
waymo = ["tensorflow==2.11.0", "waymo-open-dataset-tf-2-11-0", "intervaltree"]
vod = ["vod-devkit==1.1.1"]
[project.urls]
"Homepage" = "https://github.com/nvr-avg/trajdata"
"Bug Tracker" = "https://github.com/nvr-avg/trajdata/issues"