-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (53 loc) · 1.85 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
[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "space_robotics_bench._rs"
manifest-path = "crates/space_robotics_bench_py/Cargo.toml"
[tool.pytest.ini_options]
env = ["SRB_SKIP_REGISTRATION=true"]
[project]
name = "space_robotics_bench"
description = "Comprehensive benchmark for space robotics"
authors = [{ name = "Andrej Orsula", email = "[email protected]" }]
maintainers = [{ name = "Andrej Orsula", email = "[email protected]" }]
urls = { Repository = "https://github.com/AndrejOrsula/space_robotics_bench", Documentation = "https://AndrejOrsula.github.io/space_robotics_bench" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Framework :: Robot Framework",
]
keywords = ["benchmark", "robotics", "simulation", "space"]
readme = "README.md"
license = { text = "MIT OR Apache-2.0" }
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = ["platformdirs>=4.2,<5", "pydantic>=2.7,<3"]
[project.optional-dependencies]
all = [
## Algorithms
"space_robotics_bench[dreamerv3]",
"space_robotics_bench[robomimic]",
"space_robotics_bench[sb3]",
## Hardware
"space_robotics_bench[spacemouse]",
## Utils
"space_robotics_bench[rich]",
"space_robotics_bench[tests]",
]
## Algorithms
dreamerv3 = [
"dreamerv3@git+https://github.com/AndrejOrsula/dreamerv3.git@58bd8ff875077a859b68f9ad94d89129d4f8dd68",
]
robomimic = [
"robomimic@git+https://github.com/ARISE-Initiative/robomimic.git@29d6ca229dec3327f87b54cf1688a94177f92af6",
]
sb3 = ["stable-baselines3>=2.3,<3", "sb3-contrib>=2.3,<3"]
## Hardware
spacemouse = ["pyspacemouse>=1.1,<2"]
## Utils
rich = ["rich>=13.9,<14"]
tests = ["pytest>=8.2,<9", "pytest-env>=1.1,<2"]