-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (65 loc) · 1.67 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Mighty"
version = "0.0.1"
description = "A modular, meta-learning-ready RL library."
authors = [{ name = "AutoRL@LUHAI", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.10"
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==1.12",
"rich~=12.4",
"wandb~=0.12",
"torch",
"dill",
"imageio",
"evosax==0.1.6",
"rliable",
"seaborn"
]
[project.optional-dependencies]
dev = ["ruff", "mypy", "automl-sphinx-theme==0.2.0", "build", "pytest", "pytest-cov"]
carl = ["carl_bench==1.1.0", "brax==0.9.3", "protobuf>=3.17.3", "mujoco==3.0.1"]
dacbench = ["dacbench>=0.3.0", "torchvision", "ioh"]
pufferlib = ["pufferlib==1.0.0"]
[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"]