-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 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
45
46
47
48
[project]
name = "jaxgmg"
version = "0.0.0"
authors = [
{ name="Matthew Farrugia-Roberts", email="matthew@far.in.net" },
]
description = "JAX-based environments and RL baselines for studying goal misgeneralisation."
readme = "README.md"
classifiers = [
"Private :: Do Not Upload",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.10"
dependencies = [
"jax",
"imageio",
"moviepy",
"numpy",
"einops",
"chex",
"jaxtyping",
"flax",
"distrax",
"readchar",
"typer",
"tqdm",
"wandb",
"orbax-checkpoint",
]
[project.scripts]
jaxgmg = "jaxgmg.cli.app:app"
[project.urls]
Homepage = "https://github.com/matomatical/jaxgmg"
Issues = "https://github.com/matomatical/jaxgmg/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["jaxgmg"]