-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
108 lines (87 loc) · 2.59 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Package ######################################################################
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rrls"
description = "A robust reinforcement learning benchmark for continuous control tasks."
readme = "README.md"
requires-python = ">= 3.9"
authors = [{ name = "Adil Zouitine", email = "adilzouitinegm@gmail.com" }]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "Gymnasium", "RL", "AI", "Robotics"]
classifiers = [
"Development Status :: 4 - Beta", # change to `5 - Production/Stable` when ready
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"mujoco==2.3.3",
"cython<3",
"mujoco-py<2.2,>=2.1",
"numpy>=1.21.0",
"gymnasium==1.0.0a1",
"moviepy>=1.0.3",
]
dynamic = ["version"]
[project.optional-dependencies]
# Update dependencies in `all` if any are added or removed
testing = [
"pytest>=7.0.1",
"mujoco_py<2.2,>=2.1",
]
mujoco_py = ["mujoco_py<2.2,>=2.1"]
dev = [
"ruff",
"black",
"mypy",
]
[project.urls]
Homepage = "https://github.com/SuReLI/RRLCS"
Repository = "https://github.com/SuReLI/RRLCS"
Documentation = "https://github.com/SuReLI/RRLCS"
"Bug Report" = "https://github.com/SuReLI/RRLCS"
[project.entry-points."gymnasium.envs"]
__root__ = "rrls.__init__:register_robotics_envs"
[tool.setuptools]
include-package-data = true
# Linters and Test tools #######################################################
[tool.mypy]
files = "rrls"
[tool.ruff]
select = ["E", "F", "I", "UP"] # https://beta.ruff.rs/docs/rules/
line-length = 100
target-version = 'py39'
ignore = ["E501", "D102", "D200"]
[tool.ruff.isort]
required-imports = ["from __future__ import annotations"]
[tool.black]
safe = true
[tool.isort]
atomic = true
profile = "black"
src_paths = ["rrls", "test"]
[tool.pyright]
include = [
"rrls/**",
"test/**"
]
exclude = [
"**/node_modules",
"**/__pycache__",
]
strict = []
typeCheckingMode = "basic"
pythonVersion = "3.9"
pythonPlatform = "All"
typeshedPath = "typeshed"
enableTypeIgnoreComments = true
# This is required as the CI pre-commit does not download the module (i.e. numpy)
# Therefore, we have to ignore missing imports
reportMissingImports = "none"
reportGeneralTypeIssues = "none" # -> commented out raises 489 errors