-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
107 lines (94 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[project]
name = "av2"
description = "Argoverse 2: Next generation datasets for self-driving perception and forecasting."
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = [
"argoverse",
"argoverse2",
"autonomous-driving",
"av1",
"av2",
"3d-object-detection",
"3d-scene-flow",
"4d-occupancy-forecasting",
"e2e-forecasting",
"motion-forecasting",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust",
]
dependencies = [
"av",
"click",
"joblib",
"kornia",
"matplotlib",
"nox",
"numba",
"numpy",
"opencv-python",
"pandas",
"polars",
"pyarrow",
"pyproj",
"rich",
"scipy",
"torch",
"tqdm",
"universal_pathlib",
]
dynamic = [
"authors",
"version"
]
readme = "README.md"
[project.optional-dependencies]
lint = [
"black[jupyter]",
"mypy",
"ruff",
]
test = [
"pytest",
"pytest-benchmark",
"pytest-cov",
]
[project.urls]
homepage = "https://argoverse.org"
repository = "https://github.com/argoverse/av2-api"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "av2._r"
[tool.ruff]
select = [
"D",
]
[tool.ruff.pydocstyle]
convention = "google"
[tool.mypy]
exclude = "build"
ignore_missing_imports = true
disallow_untyped_calls = false
disallow_untyped_decorators = false
plugins = "numpy.typing.mypy_plugin"
strict = true
[tool.pyright]
include = ["src"]
reportMissingTypeStubs = false
reportUnknownMemberType = false
reportUntypedFunctionDecorator = false
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov-report term-missing:skip-covered --cov av2"
testpaths = ["tests"]