-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (53 loc) · 1.4 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
[project]
name = "jaxenstein"
version = "0.1.0"
description = "First person mazes in JAX"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Ruoyu Tao" },
]
keywords = ["jax", "reinforcement-learning", "environments", "maze", "gymnax"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"jax>=0.6.2",
"numpy>=1.26.0",
"pillow>=11.0.0",
]
[project.urls]
Homepage = "https://github.com/taodav/jaxenstein"
Repository = "https://github.com/taodav/jaxenstein"
Issues = "https://github.com/taodav/jaxenstein/issues"
[project.optional-dependencies]
gymnax = [
"gymnax>=0.0.9",
]
cuda12 = [
"jax[cuda12]>=0.6.2; sys_platform == 'linux'",
]
tpu = [
"jax[tpu]>=0.6.2; sys_platform == 'linux'",
]
dev = [
"gymnax>=0.0.9",
"pytest>=8.4.1",
]
[build-system]
requires = ["uv-build>=0.9.26,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "jaxenstein"
module-root = ""