-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
91 lines (83 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "gym-quadruped"
version = "0.0.7"
description = "A gym environment for quadruped robots using MuJoCo physics engine."
authors = [
{ name="Daniel Ordoñez-Apraez", email="[email protected]" },
{ name="Giulio Turrisi", email="[email protected]" },
]
maintainers = [
{ name="Daniel Felipe Ordoñez Apraez", email="[email protected]" },
]
readme = "README.md"
#license = "TODO"
keywords = ["robotics", "locomotion", "quadruped", "deep", "reinforcement", "learning", "environment", "gym", "gymnasium", "mujoco"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
]
packages = [{include = "gym_quadruped"}]
dependencies = [
"numpy",
"scipy",
"robot_descriptions",
"mujoco==3.1.1",
"noise",
"opencv-python",
]
[tool.ruff]
line-length = 120
target-version = "py310"
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I001",
# pydocstyle
"D"
]
ignore = [
"D401", # good for methods but not for class docstrings
"D405", # British-style section names are also "proper"!
"E701", # short single-line statements are fine
"D100",
]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".idea",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
[tool.ruff.pydocstyle]
convention = "google"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "N", "B", "C4", "SIM"]
ignore-init-module-imports = true
#_______________________________________________________
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"