-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1010 Bytes
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1010 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "max"
version = "0.1.0"
description = "A JAX-based Reinforcement Learning library for model-based and model-free control"
readme = "README.md"
requires-python = ">=3.8,<3.14"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["reinforcement learning", "JAX", "model-based RL", "IPPO", "PPO"]
dependencies = [
"jax>=0.4.0",
"jaxlib>=0.4.0",
"flax>=0.8.0",
"optax>=0.2.0",
"numpy>=1.20.0",
"matplotlib>=3.5.0",
"scipy>=1.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=22.0.0",
"isort>=5.0.0",
]
wandb = [
"wandb>=0.15.0",
]
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88