forked from vicariousinc/PGMax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.2 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
[tool.poetry]
name = "pgmax"
version = "0.2.3"
description = "Loopy belief propagation for factor graphs on discrete variables, in JAX!"
authors = ["Stannis Zhou <[email protected]>", "Nishanth Kumar <[email protected]>", "Miguel Lazaro-Gredilla <[email protected]>", "Dileep George <[email protected]>"]
maintainers = ["Stannis Zhou <[email protected]>", "Nishanth Kumar <[email protected]>"]
# Additional info
license = "MIT"
readme = "README.md"
include = [
"LICENSE",
]
homepage = "https://github.com/vicariousinc/PGMax"
repository = "https://github.com/vicariousinc/PGMax"
documentation = "https://pgmax.readthedocs.io/en/latest/"
keywords = ["PGMax", "jax"]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
jupyter = "^1.0.0"
matplotlib = "^3.2.0"
jax = "^0.2.14"
jaxlib = "^0.1.67"
numpy = "^1.19.0"
scipy = "^1.2.3"
jupytext = "^1.11.3"
tqdm = "^4.61.0"
sphinx = {version = "^4.4.0", optional = true}
scikit-learn = "^1.0.1"
joblib = "^1.1.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pre-commit = "^2.13.0"
sphinx-rtd-theme = "^0.5.2"
pytest-cov = "^2.12.1"
[tool.poetry.extras]
docs = ["sphinx"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"