-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
73 lines (59 loc) · 1.39 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
73
[tool.poetry]
name = "pysip"
version = "1.0.0"
description = "PySIP"
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.23.4"
scipy = "^1.9.3"
pandas = "^1.5.1"
matplotlib = "^3.6.2"
joblib = "^1.2.0"
pylfsr = "^1.0.6"
networkx = "^2.8.8"
tqdm = "^4.64.1"
numdifftools = "^0.9.41"
arviz = "^0.14.0"
platformdirs = "^3.1.1"
pydantic = "^1.10.7"
jinja2 = "^3.1.3"
numba = "^0.57.0"
flatten-dict = "^0.4.2"
pymc = "^5.5.0"
pytensor = "^2.12.3"
loguru = "^0.7.0"
makefun = "^1.15.1"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^1.1.1"
sphinxcontrib-tikz = "^0.4.16"
sphinx-autodoc-typehints = "^1.19.5"
pydot = "^1.4.2"
numpydoc = "^1.5.0"
myst-parser = "^2.0.0"
sphinx = "^6"
nbsphinx = "^0.9.2"
sphinx-autobuild = "^2021.3.14"
sphinx-book-theme = "^1.0.1"
nbsphinx-link = "^1.3.0"
[tool.poetry.group.tests.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
xdoctest = "^1.1.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
ruff = "^0.0.241"
[tool.poetry.group.interactive.dependencies]
ipykernel = "^6.17.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--cov=pysip --xdoctest --doctest-glob='docs/*.rst'"
doctest_optionflags = ["NORMALIZE_WHITESPACE", "ELLIPSIS"]
testpaths = ["tests", "."]
[tool.isort]
profile = "black"