-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kitae"
requires-python = ">=3.10"
description = "A RL library using Flax modules"
authors = [
{name = "Raffael Bolla Di Lorenzo", email = "raffaelbdl@gmail.com"}
]
dependencies = [
"chex",
"distrax",
"einops",
"envpool",
"flatdict",
"flax",
"gymnasium",
"numpy",
"optax",
"orbax_checkpoint",
"pettingzoo",
"tensorboard",
"tensorboardX",
"vec_parallel_env@git+https://github.com/Raffaelbdl/vectorization_parallel_env",
"jrd_extensions@git+https://github.com/Raffaelbdl/jrd_extensions",
"shaberax[all] @ git+https://github.com/Raffaelbdl/shaberax",
"distrax-tabulate@git+https://github.com/Raffaelbdl/distrax_flax",
"save@git+https://github.com/Raffaelbdl/save",
]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://github.com/Raffaelbdl/kitae"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "kitae.version.__version__"}
[tool.setuptools.packages.find]
include = ["kitae*"]