-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
45 lines (39 loc) · 1.08 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
45
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
tensorneat = ["*.txt", "*.json"]
[project]
name = "tensorneat"
version = "0.1.0"
authors = [{ name = "Lishuang Wang", email = "[email protected]" }]
description = "tensorneat"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"brax >= 0.10.3",
"jax >= 0.4.28",
"gymnax >= 0.0.8",
"jaxopt >= 0.8.3",
"optax >= 0.2.2",
"flax >= 0.8.4",
"mujoco >= 3.1.4",
"mujoco-mjx >= 3.1.4",
"networkx >= 3.3",
"matplotlib >= 3.9.0",
"sympy >= 1.12.1",
]
[project.urls]
"Homepage" = "https://github.com/EMI-Group/tensorneat"
"Bug Tracker" = "https://github.com/EMI-Group/tensorneat/issues"