-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 1.23 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "pobax"
version = "0.0.1"
description = "Reinforcement learning benchmark that tests all forms of partial observability in JAX."
authors = [{ name = "Ruo Yu (David) Tao", email = "ruoyutao@gmail.com" }]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"jax",
"flax",
"distrax",
"optax",
"gymnax",
"brax",
"navix",
"jumanji",
"pandas",
"tqdm",
"typed-argument-parser",
"numpy",
"matplotlib",
"seaborn",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
dev = [
"pytest",
]
test = [
"chex",
"flax",
"brax",
"minatar",
]
[project.urls]
Homepage = "https://github.com/taodav/pobax"
[tool.setuptools.packages.find]
where = ["."]
include = ["pobax*"]
[tool.setuptools]
license-files = []