-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 848 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 848 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "neodojo"
version = "0.1.0"
description = "Fixture-first teaching playback prototype for neodojo."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
[project.scripts]
neodojo = "neodojo.cli:main"
[project.optional-dependencies]
sim = ["mujoco>=3.3,<4"]
rerun = ["rerun-sdk>=0.32,<1"]
viser = ["viser>=1.0,<2"]
browser = ["playwright>=1.56,<2", "Pillow>=10,<13"]
real-g1-replay = [
"mujoco>=3.3,<4",
"roboharness[demo] @ git+https://github.com/MiaoDX/roboharness.git@0bd5551d92d56a041e5c1b12a68ca6a4b8963b16",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
neodojo = ["templates/*.html", "templates/*.py", "templates/*.sh"]