-
Notifications
You must be signed in to change notification settings - Fork 273
/
pyproject.toml
69 lines (59 loc) · 2.12 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
# Package ######################################################################
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "metaworld"
version = "2.0.0"
description = "Collections of robotics environments geared towards benchmarking multi-task and meta reinforcement learning."
readme = "README.md"
requires-python = ">= 3.8"
authors = [{ name = "Farama Foundation", email = "[email protected]" }]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "game", "RL", "AI", "gymnasium"]
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.8",
"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 = [
"gymnasium>=1.0.0a1",
"mujoco<3.0.0",
"numpy>=1.18",
"scipy>=1.4.1",
"imageio"
]
[project.optional-dependencies]
# Update dependencies in `all` if any are added or removed
testing = ["ipdb", "memory_profiler", "pyquaternion==0.9.5", "pytest>=4.4.0"]
dev = ["black", "isort", "mypy"]
[project.urls]
Homepage = "https://farama.org"
Repository = "https://github.com/Farama-Foundation/Metaworld"
Documentation = "https://metaworld.github.io/"
"Bug Report" = "https://github.com/Farama-Foundation/Metaworld/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
metaworld = ["py.typed"]
[tool.setuptools.packages.find]
include = ["metaworld", "metaworld.*"]
# Linters and Test tools #######################################################
[tool.black]
safe = true
[tool.isort]
atomic = true
profile = "black"
src_paths = ["metaworld", "tests"]
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
exclude = ["docs"]
[[tool.mypy.overrides]]
module = ["setuptools", "glfw", "mujoco", "memory_profiler", "scipy.*"]
ignore_missing_imports = true