-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
74 lines (67 loc) · 1.44 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "droid"
authors = [
{name = "Alexander Khazatsky "}
]
description = "Distributed Robot Interaction Dataset"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["robotics"]
dependencies = [
"boto3",
"customtkinter",
"dm-control==1.0.5",
"gym",
"h5py",
"imageio",
"matplotlib",
"mujoco==2.3.2",
"open3d",
"opencv-python==4.6.0.66",
"opencv-contrib-python==4.6.0.66",
"Pillow",
"protobuf==3.20.1",
"psutil",
"pyrallis",
"scipy",
"tqdm",
"zerorpc",
]
[project.optional-dependencies]
dev = [
"black[jupyter]",
"ipython",
"pre-commit",
"ruff",
]
postprocessing = [
"scikit-image",
]
[project.urls]
homepage = "https://github.com/droid-dataset/droid"
repository = "https://github.com/droid-dataset/droid"
documentation = "https://github.com/droid-dataset/droid"
[tool.black]
line-length = 121
target-version = ["py37", "py38", "py39", "py310"]
preview = true
[tool.ruff]
line-length = 121
target-version = "py38"
select = ["A", "B", "C90", "E", "F", "I", "RUF", "W"]
ignore = ["F405", "B006", "C901", "F403", "E722"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]
[tool.isort]
profile = "black"
line_length = 121
skip = ["__init__.py"]
filter_files = true
py_version = "all"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["cache"]