-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
37 lines (35 loc) · 802 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "roscenes"
authors = [
{name = "Xiaosu Zhu", email = "zhuxiaosu.zxs@alibaba-inc.com"},
]
version = "0.0.1"
description = "RoScenes dataset devkit"
readme = "README.md"
license = { text="Apache 2.0" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
dependencies = [
"lmdb<2",
"packaging",
"numpy<2",
"shapely<3",
"dashtable<2",
"rich<14",
"scipy<2",
"click<9",
"joblib<2",
"pyyaml<7",
"opencv-python-headless<5",
"matplotlib<4",
"bs4<0.1",
"seaborn<1"
]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)