forked from SysCV/shift-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.07 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "shift-dev"
version = "1.0.0"
description = "SHIFT Dataset Devkit"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Tao Sun", email = "taosun47@ethz.ch"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"appdirs>=1.4.4",
"h5py>=3.1.0",
"matplotlib>=3.6.3",
"numpy>=1.21.3",
"pillow>=9.1.1",
"pycocotools",
"scalabel @ git+https://github.com/scalabel/scalabel.git",
"scikit_image>=0.18.3",
"PyYAML>=6.0",
"tqdm>=4.38.0",
"opencv_python>=4.5.2.54",
"pydantic<=1.10.22", # pydantic v2 is incompatible due to many changes.
"torch"
]
[project.urls]
Homepage = "https://www.vis.xyz/shift/"
Documentation = "https://www.vis.xyz/shift/"
Source = "https://github.com/SysCV/shift-dev"
Tracker = "https://github.com/SysCV/shift-dev/issues"
[tool.flit.module]
name = "shift_dev"