-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (48 loc) · 1.72 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["wheel", "setuptools>=60", "setuptools_scm[toml]>=8.0"]
[project]
name = "mujoco-urdf-loader"
dynamic = ["version"]
description = "A simple URDF to MJCF converter for MuJoCo, part of the ergoCub project."
keywords = ["mujoco", "urdf", "robotics", "simulation", "physics"]
license.file = "LICENSE"
authors = [{ name = "Giovanni Fregonese", email = "[email protected]" }]
maintainers = [{ name = "Giovanni Fregonese", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">= 3.10"
dependencies = ["mujoco", "resolve-robotics-uri-py", "idyntree"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Repository = "https://github.com/ami-iit/mujoco-urdf-loader"
[project.optional-dependencies]
development = ["black", "isort", "pre-commit"]
testing = ["pytest >= 6.0"]
all = ["mujoco-urdf-loader[development,testing]"]
# [tool.setuptools]
# package-dir = { "" = "src" }
[tool.setuptools.package-data]
mujoco_urdf_loader = ["*.yaml", "*.urdf"]
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
local_scheme = "dirty-tag"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3