-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.62 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"dm_robotics",
]
[tool.hatch.build.sources]
"src/dm_robotics/panda" = "dm_robotics/panda"
[project]
name = "dm-robotics-panda"
description = "Panda model for dm_robotics."
version = "0.4.8"
requires-python = ">=3.8,<3.13"
authors = [
{ name = "Jean Elsner", email = "jean.elsner@tum.de" },
]
dependencies = [
"dm-robotics-moma>=0.9.0",
"dm-robotics-controllers>=0.9.0",
"dm-robotics-agentflow>=0.9.0",
"dm-robotics-manipulation>=0.9.0",
"dm-robotics-geometry>=0.9.0",
"dm-robotics-transformations>=0.9.0",
"dm_env",
"panda-python>=0.7.4",
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["python", "panda", "robotics", "simulation", "manipulation"]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
lint = [
"anybadge",
"pylint",
]
doc = [
"sphinx",
"furo",
"sphinx_reredirects",
"sphinxcontrib.youtube",
]
[project.urls]
homepage = "https://github.com/JeanElsner/dm_robotics_panda"
documentation = "https://jeanelsner.github.io/dm-robotics-panda/"
repository = "https://github.com/JeanElsner/dm_robotics_panda"