-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
52 lines (47 loc) · 999 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ogbench"
version = "1.0.1"
requires-python = ">=3.8"
dependencies = [
"mujoco >= 3.1.6",
"dm_control >= 1.0.20",
"gymnasium[mujoco]",
]
authors = [
{ name = "Seohong Park" },
{ name = "Kevin Frans" },
{ name = "Benjamin Eysenbach" },
{ name = "Sergey Levine" },
]
maintainers = [
{ name = "Seohong Park", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["description"]
[project.optional-dependencies]
train = [
"jax[cuda12] >= 0.4.26",
"flax >= 0.8.4",
"distrax >= 0.1.5",
"ml_collections",
"matplotlib",
"moviepy",
"wandb",
]
dev = [
"ruff",
]
all = [
"ogbench[train,dev]",
]
[project.urls]
Home = "https://github.com/seohongpark/ogbench"
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.format]
quote-style = "single"