-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (83 loc) · 1.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "jax-cpo"
version = "0.1.0"
description = ""
authors = ["Yarden <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10,<3.12"
optax = "^0.1.7"
hydra-core = "^1.3.2"
tqdm = "^4.66.2"
tabulate = "^0.9.0"
tensorboardx = "^2.6.2.2"
gymnasium = "^0.29.1"
dm-control = "^1.0.16"
dm-env = "^1.6"
pillow = "^10.2.0"
moviepy = "^1.0.3"
safe-adaptation-gym = { git = "https://[email protected]/lasgroup/safe-adaptation-gym.git" }
jmp = { git = "https://github.com/deepmind/jmp" }
tensorboard = "^2.16.2"
jaxlib = {url = "https://storage.googleapis.com/jax-releases/cuda11/jaxlib-0.4.23+cuda11.cudnn86-cp310-cp310-manylinux2014_x86_64.whl", extras = ["cuda11_pip"]}
dm-haiku = "^0.0.12"
distrax = "^0.1.5"
jax = "0.4.25"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.group.dev.dependencies]
mypy = "^1.7.0"
pre-commit = "^3.5.0"
ruff = "^0.1.5"
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
types-tabulate = "^0.9.0.20240106"
seaborn = "^0.13.2"
ipykernel = "^6.29.4"
[tool.poetry.group.wandb.dependencies]
wandb = "^0.16.4"
[tool.poetry.group.hydra-submitit.dependencies]
hydra-submitit-launcher = "^1.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
ignore = ["E731"]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
ignore_missing_imports = true
show_column_numbers = true
disallow_untyped_defs = false
disallow_subclassing_any = false
disallow_untyped_calls = false
strict_optional = true