-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
46 lines (41 loc) · 1019 Bytes
/
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
46
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxued"
version = "0.0.1"
authors = [
{ name="Samuel Coward", email="scoward@robots.ox.ac.uk" },
]
description = "A simple and useable UED library in Jax"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
keywords = ["machine-learning", "reinforcement-learning", "UED", "JAX"]
maintainers = [
{ name = "Samuel Coward", email = "scoward@robots.ox.ac.uk" }
]
dependencies = [
"numpy",
"jax",
"flax",
"chex",
"gymnax",
"distrax",
"optax",
"orbax-checkpoint==0.5.3",
"orbax",
"wandb",
"pillow",
"imageio",
"moviepy"
]
[project.urls]
Homepage = "https://github.com/dramacow/jaxued"
Issues = "https://github.com/dramacow/jaxued/issues"
license-file = "LICENSE"