-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.3 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
67
68
69
70
71
72
[tool.poetry]
name = "imprint"
version = "0.2.0"
description = ""
authors = [
"Confirm Solutions <research@confirmsol.org>",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
numpy = "^1.24.2"
scipy = "^1.10.1"
sympy = "^1.11.1"
pandas = "^1.5.3"
jax = "^0.4.4"
numpyro = "^0.11.0"
tensorflow-probability = "^0.19.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
matplotlib = "^3.7.0"
pytest = "^7.2.1"
pre-commit = "^3.1.1"
ipython = "^8.11.0"
nbformat = "^5.7.3"
[tool.poetry.group.test.dependencies.pytest-xdist]
extras = [
"psutil",
]
version = "^3.2.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
poetry = "1.4.0"
line-profiler = "^3.5.1"
jupytext = "^1.14.5"
reorder-python-imports = "^3.9.0"
flake8 = "^6.0.0"
typer = "^0.7.0"
jupyter = "^1.0.0"
rich = "^13.3.1"
ipdb = "^0.13.11"
[tool.poetry.group.dev.dependencies.black]
extras = [
"jupyter",
]
version = "^23.1.0"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-p imprint.testing --capture=no --show-capture=no --tb=short --strict-markers -Werror"
testpaths = [
"tests",
]
[tool.jupytext]
notebook_metadata_filter = "-all"
cell_metadata_filter = "-all"
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"