-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
60 lines (55 loc) · 1.55 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
[tool.poetry]
name = "elegy"
description = "Elegy is a Neural Networks framework based on Jax and Haiku."
authors = ["Cristian Garcia <cgarcia.e88@gmail.com>",
"Carlos Alvarez <candres.alv@gmail.com>",
"David Cardozo <davidcardozo@berkeley.edu>",
"Sebastian Arango"]
version = "0.8.6"
license = "APACHE"
readme = "README.md"
repository = "https://github.com/poets-ai/elegy"
homepage = "https://poets-ai.github.io/elegy"
[[tool.poetry.source]]
name = "torch"
url = "https://eternalphane.github.io/pytorch-pypi/"
secondary = true
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
cloudpickle = "^1.5.0"
tensorboardx = "^2.1"
wandb = { version = "^0.12.10", optional = true }
treex = "^0.6.5"
# treex = {path = "../treex", develop = true}
[tool.poetry.dev-dependencies]
jax = "^0.2.24"
jaxlib = "^0.1.73"
pytest = "^5.4.3"
pytest-cov = "^2.10.0"
dm-haiku = "^0.0.5"
mkdocs = "^1.1.2"
mkdocs-material = "^6.2.7"
mkdocstrings = "^0.14.0"
black = "^22.3.0"
typer = "^0.4.1"
mkdocs-jupyter = { version = "^0.15.1", python = ">=3.7" }
matplotlib = "^3.3.0"
debugpy = "^1.0.0-beta.12"
jupyter = { version = "^1.0.0", python = ">=3.7" }
jupyterlab = { version = "^3.0.6", python = ">=3.7" }
ipython = { version = "^7.20.0", python = ">=3.7" }
flax = "^0.3.6"
torch = "1.9.1+cpu"
einops = "^0.3.0"
sh = "^1.14.1"
pre-commit = "^2.15.0"
datasets = "^1.14.0"
livereload = "^2.6.3"
libclang = "^13.0.0"
wandb = "^0.12.10"
tensorflow-cpu = "^2.9.0"
[tool.poetry.extras]
wandb = ["all"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"