-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 914 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
35
36
37
38
[tool.poetry]
name = "deepdiagnostics"
packages = [{include = "*", from="src"}]
version = "1.0.0"
description = "a package for diagnosing posterior quality from inference methods"
authors = ["Becky Nevin <[email protected]>", "M Voetberg <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
diagnose = "deepdiagnostics.client.client:main"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
sbi = "^0.22.0"
pyarrow = "^15.0.0"
getdist = "^1.4.7"
h5py = "^3.10.0"
numpy = ">=1.18.5,<1.26.0"
matplotlib = "^3.8.3"
tarp = "^0.1.1"
deprecation = "^2.1.0"
scipy = ">=1.6.0, <1.12.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.2"
pytest-cov = "^4.1.0"
flake8 = "^7.0.0"
pytest = "^7.3.2"
black = "^24.3.0"
ruff = "^0.3.5"
sphinx = "^7.2.6"
sphinxcontrib-bibtex = "^2.6.2"
sphinx-autodoc-typehints = "^2.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"