-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (74 loc) · 1.97 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Mighty-RL"
version = "0.0.1"
description = "A modular, meta-learning-ready RL library."
authors = [{ name = "AutoRL@LUHAI", email = "a.mohan@ai.uni-hannover.de" }]
readme = "README.md"
requires-python = ">=3.10,<3.12"
license = { file = "LICENSE" }
keywords = [
"Reinforcement Learning",
"MetaRL",
"Generalization in RL"
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License"
]
dependencies = [
"numpy~=1.21",
"gymnasium",
"matplotlib~=3.4",
"seaborn~=0.11",
"tensorboard",
"hydra-core~=1.2",
"hydra-colorlog~=1.2",
"hydra-submitit-launcher~=1.2",
"pandas",
"scipy",
"rich~=12.4",
"wandb~=0.12",
"torch",
"dill",
"imageio",
"evosax==0.1.6",
"rliable",
"seaborn"
]
[project.optional-dependencies]
dev = ["ruff", "mypy", "build", "pytest", "pytest-cov"]
carl = ["carl_bench==1.1.0", "brax==0.9.3", "protobuf>=3.17.3"]
dacbench = ["dacbench>=0.3.0", "torchvision", "ioh"]
pufferlib = ["pufferlib==2.0.6"]
docs = ["mkdocs", "mkdocs-material", "mkdocs-autorefs",
"mkdocs-gen-files", "mkdocs-literate-nav",
"mkdocs-glightbox", "mkdocs-glossary-plugin",
"mkdocstrings[python]", "markdown-exec[ansi]", "mike"]
[tool.ruff]
extend-exclude = []
[tool.ruff.lint]
ignore = [
# Conflicts with the formatter
"COM812", "ISC001"
]
[tool.mypy]
python_version = "3.10"
disallow_untyped_defs = true
show_error_codes = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
exclude = ["scripts", "docs", "test"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true