-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
50 lines (42 loc) · 1.07 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "tucan"
authors = [{ name = "Jan C. Brammer", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dynamic = ["version", "description"]
dependencies = [
"networkx >=3.0",
"scipy >=1.10.0",
"matplotlib >=3.6.2",
"tabulate >=0.9.0",
"types-tabulate >= 0.9.0",
"igraph >=0.10.3",
"antlr4-python3-runtime == 4.11.1",
]
[project.optional-dependencies]
drawing = [
"plotly", # interactive 3D drawings
"notebook",
"ipywidgets",
]
dev = ["pytest", "syrupy"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = """
-v
--durations=5"""
testpaths = ["tests"]
[tool.black] # https://lyz-code.github.io/blue-book/devops/black/
extend-exclude = 'tucan/parser/tucan.*\.py'
[tool.mypy]
ignore_missing_imports = true
exclude = ["parser/"]
[[tool.mypy.overrides]]
module = "tucan.parser.*"
follow_imports = "skip"