-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.04 KB
/
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
[build-system]
requires = ["setuptools", "pybind11"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["envx*"]
exclude = ["src*"]
[project]
name = "envx"
version = "0.1.0"
authors = [
{ name = "0Pinky0", email = "[email protected]" },
]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "RL", "AI"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
description = "Self constructed environments based on Jax."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"gymnasium[jax]",
"jax",
"jaxlib",
"pygame",
"opencv-python",
]
[project.optional-dependencies]
#cuda = ["jax[cuda12_pip]"]
testing = [
"pytest ==7.1.3",
"scipy >= 1.7.3",
"dill>=0.3.7",
]