-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (79 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
84 lines (79 loc) · 1.85 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qdax"
dynamic = ["version"]
description = "QDax: Accelerated Quality-Diversity"
readme = "README.md"
authors = [
{name = "AIRL and InstaDeep Ltd", email = "adaptive.intelligent.robotics@gmail.com"}
]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["quality-diversity", "open-endedness", "neuroevolution", "reinforcement learning"]
requires-python = ">=3.11"
dependencies = [
"numpy>=2.3",
"jax>=0.8.0",
"flax>=0.12.0",
"distrax>=0.1.7",
"optax>=0.1.9",
"scikit-learn>=1.5.1",
"scipy>=1.10.1",
"brax>=0.11.0",
]
[project.optional-dependencies]
dev = [
"coverage",
"pre-commit",
"pytest",
"pytest-assume",
"mypy",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-jupyter",
"mkdocs-autorefs",
]
examples = [
"tqdm",
"ipykernel",
"ipywidgets",
"mediapy",
"requests",
"jumanji>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/adaptive-intelligent-robotics/QDax"
[tool.hatch.version]
path = "qdax/__init__.py"
[tool.mypy]
python_version = "3.11"
namespace_packages = true
incremental = false
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = false
allow_redefinition = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
strict_optional = true
strict_equality = true
explicit_package_bases = true
follow_imports = "skip"
ignore_missing_imports = true