-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (56 loc) · 1.38 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
[tool.poetry]
name = "sponge-networks"
version = "0.6.0"
description = "a generalization of the resource network model with greedy vertices"
authors = ["heinwol <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "sponge_networks" }]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
numpy = "^1.25.0"
scipy = "^1.11.1"
pandas = "^2.0.3"
sympy = "^1.12"
networkx = "^3.1"
pydot = "^1.4.2"
toolz = "^0.12.0"
array-to-latex = "^0.91"
ipython = "^8.14.0"
ipywidgets = "^8.0.7"
typing-extensions = "^4.7.1"
openpyxl = "^3.1.2"
typeguard = "^4.0.0"
pygraphviz = "^1.11"
returns = "^0.22.0"
expression = "^5.0.2"
svgpathtools = "^1.6.1"
cairosvg = "^2.7.1"
dill = "^0.3.8"
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
black = "^24.1.1"
typer = "^0.12.0"
ruff-lsp = "^0.0.53"
pyright = "^1.1.366"
jupyterlab = "^4.2.2"
matplotlib = "^3.9.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
nbmake = "^1.5.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
plugins = ["returns.contrib.mypy.returns_plugin"]
allow_redefinition = true
# allow_untyped_globals = true
ignore_missing_imports = true
disallow_untyped_calls = false
[tool.pyright]
include = ["sponge_networks"]
exclude = ["**/node_modules", "**/__pycache__", ".venv"]
venvPath = "."
venv = ".nix-env"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"