-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.27 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
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jaxili"
version = "0.1.1"
authors = [{name = "Sacha Guerrini"}]
description = "This package provides tools to execute and implement Implicit Likelihood Inference tools in JAX."
dependencies = [
"numpy",
"jax[cuda12]",
"jupyter",
"matplotlib",
"cmake",
"tensorflow",
"tensorflow-probability==0.24.0",
"tf_keras",
"optax",
"distrax",
"flax",
"torch",
"pytorch-lightning",
"optuna",
"numpyro",
"flowMC",
"getdist"
]
readme = "README.md"
requires-python = ">=3.10, <3.13"
urls = {Repository = "https://github.com/sachaguer/jaxili"}
[project.optional-dependencies]
docs = [
"myst-parser",
"numpydoc",
"sphinx",
"sphinx-book-theme",
]
test = [
"pytest",
"pytest-cov",
"pytest-emoji",
"pytest-pydocstyle",
"sbibm",
"sbi==0.23.3",
]
lint = ["black", "isort"]
release = ["build", "twine"]
#Install for development
dev = ["jaxili[docs,lint,release,test]"]
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
addopts = ["--verbose"]
testpaths = ["jaxili"]
[tool.setuptools.packages.find]
where = ["."]
include = ["jaxili*"]
exclude = ["jaxili.tests*", "jaxili.notebooks*"]