-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (47 loc) · 1.33 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
[tool.poetry]
name = "solstice-jax"
version = "0.0.1"
description = "Solstice, a library for creating and scaling experiments in JAX."
authors = ["Charles Jones <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Charl-AI/Solstice"
documentation = "https://charl-ai.github.io/Solstice/"
packages = [
{ include = "solstice" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
equinox = "^0.5.4"
tqdm = "^4.64.0"
typing-extensions = "^4.3.0"
[tool.poetry.dev-dependencies]
jax = "^0.3.14"
jaxlib = "^0.3.14"
optax = "^0.1.2"
flax = "^0.5.2"
dm-haiku = "^0.0.7"
tensorflow = "^2.9.1"
tensorflow-datasets = "^4.6.0"
mkdocs-material = {extras = ["python"], version = "^8.3.9"}
pymdown-extensions = "^9.5"
mkdocs = "^1.3.0"
mkdocstrings = {extras = ["python"], version = "^0.19.0"}
pytest = "^7.1.2"
hydra-core = "^1.2.0"
Pillow = "^9.2.0"
tensorboard = "^2.9.1"
tensorboard-plugin-profile = "^2.8.0"
clu = "^0.0.7"
ipykernel = "^6.15.1"
mknotebooks = "^0.7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"