-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (52 loc) · 1.29 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
49
50
51
52
53
54
55
[project]
name = "imitation-learning"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "arnavkj1995", email = "arnavkj95@gmail.com"},
]
dependencies = [
"chex>=0.1.86",
"hydra-core==1.3.1",
"omegaconf>=2.3.0",
"wandb[importers]>=0.17.0",
"tqdm>=4.66.4",
"flax>=0.8.3",
"tensorflow-datasets>=4.9.4",
"tensorflow>=2.15.1",
"jax-dataloader>=0.1.0",
"jax[cuda12_pip]>=0.4.26",
"einops>=0.8.0",
"python-dotenv>=1.0.1",
"ipdb>=0.13.13",
"pandas>=2.2.2",
"seaborn>=0.13.2",
"frozendict>=2.4.4",
"dm-env>=1.6",
"dm-control>=1.0.19",
"flashbax>=0.1.2",
"xmanager-slurm>=0.3.2",
"tyro>=0.8.5",
"rliable @ git+https://github.com/google-research/rliable",
"opencv-python>=4.10.0.84",
"setuptools==66",
"gym==0.23.0",
"stable-baselines3>=1.2.0",
"sbx-rl>=0.17.0",
"keras>=3.6.0",
"tensorflow-probability==0.24.0",
"tf-keras>=2.18.0",
"shimmy[dm-control]>=1.3.0",
]
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm.resolution.overrides]
Cython = "<3.0"
[tool.pdm]
distribution = false
[[tool.pdm.source]]
name = "jax"
url = "https://storage.googleapis.com/jax-releases/jax_cuda_releases.html"
verify_ssl = true
type = "find_links"