-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
29 lines (29 loc) · 894 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "torch_waymo"
version = "0.1.4"
authors = [
{ name = "William Guimont-Martin", email = "william.guimont-martin.1@ulaval.ca" },
]
description = "Load Waymo Open Dataset in PyTorch"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["tqdm", "torch", "numpy"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
waymo = ["waymo-open-dataset-tf-2-6-0", "protobuf==3.20.0"]
[project.urls]
"Homepage" = "https://github.com/willGuimont/torch_waymo"
"Bug Tracker" = "https://github.com/willGuimont/torch_waymo/issues"
[project.scripts]
torch-waymo-convert = "torch_waymo.convert_waymo:main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"