-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (46 loc) · 1.17 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
[project]
name = "mujoco_sysid"
description = "MuJoCo System Identification tools"
version = "0.2.1"
authors = [
{ name = "Lev Kozlov", email = "[email protected]" },
{ name = "Simeon Nedelchev", email = "[email protected]" },
]
dependencies = ["mujoco", "numpy-quaternion"]
readme = "README.md"
requires-python = ">=3.8"
[project.optional-dependencies]
examples = [
"ipykernel",
"dm_control",
"scipy",
"matplotlib",
"robot_descriptions",
"mediapy",
]
mjx = ["mujoco-mjx", "jax[cuda12]"]
mjx_cpu = ["mujoco-mjx", "jax"]
[project.urls]
homepage = "https://github.com/lvjonok/mujoco-sysid"
repository = "https://github.com/lvjonok/mujoco-sysid.git"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["mujoco_sysid*"]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]