forked from JesseFarebro/distributional-sr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (65 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "distributional-sr"
authors = [
{ name = "Jesse Farebrother", email = "[email protected]" },
{ name = "Harley Wiltzer", email = "[email protected]" },
]
dependencies = [
"matplotlib",
"seaborn",
"tyro",
"orbax-checkpoint==0.5.2",
"optax",
"flax",
"tqdm",
"aim>=3.17.5",
"einops",
"numpy",
"clu",
"dm-env",
"rich",
"pdbpp>=0.10.3",
"setuptools>=68.0.0",
"fancyflags>=1.1",
"wrapt>=1.14.1",
"more-itertools>=9.1.0",
"gymnasium>=0.28.1",
"jax[cuda11_pip]>=0.4.13",
"fiddle>=0.2.7",
"portpicker>=1.5.2",
"tf2jax>=0.3.4",
"debugpy>=1.6.7",
"wandb>=0.15.8",
"jaxtyping>=0.2.21",
"shimmy[dm-control]>=1.2.1",
"etils[epath]>=1.4.1",
"tensorstore==0.1.52",
]
requires-python = "==3.10.*"
readme = "README.md"
license = { text = "MIT" }
[project.optional-dependencies]
profiling = ["py-spy>=0.3.14"]
dataset-collection = ["sbx-rl>=0.7.0", "tensorflow>=2.12.0"]
plotting = ["ipykernel>=6.26.0", "ipython>=8.16.1"]
[tool.ruff]
preview = true
line-length = 120
# Don't fix unused imports
unfixable = ["F401"]
# Ignore unused variables
ignore = ["F841", "E402"]
[tool.pdm.options]
add = ["--no-self"]
install = ["--no-self"]
sync = ["--no-self"]
[tool.pdm.scripts]
aim = "aim up"
[[tool.pdm.source]]
name = "jax"
url = "https://storage.googleapis.com/jax-releases/jax_cuda_releases.html"
verify_ssl = true
type = "find_links"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"