-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
34 lines (29 loc) · 867 Bytes
/
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
[tool.poetry]
name = "jax-tqdm"
version = "0.3.1"
description = "Tqdm progress bar for JAX scans and loops"
authors = [
"Jeremie Coullon <jeremie.coullon@gmail.com>",
"zombie-einstein <zombie-einstein@proton.me>"
]
readme = "README.md"
packages = [{include = "jax_tqdm"}]
homepage = "https://github.com/jeremiecoullon/jax-tqdm"
repository = "https://github.com/jeremiecoullon/jax-tqdm"
keywords = ["jax", "tqdm"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
tqdm = "^4.64.1"
jax = ">=0.4.12"
chex = "^0.1.87"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
taskipy = "^1.10.3"
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test = { cmd = "pytest", help="Run tests"}
lint = { cmd = "pre-commit run --all-files", help="Code format checks"}