-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (52 loc) · 1.31 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
[tool.poetry]
name = "znflow"
version = "0.2.2"
description = "A general purpose framework for building and running computational graphs."
authors = ["zincwarecode <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.urls]
repository = "https://github.com/zincware/znflow"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
networkx = "^3"
dask = { version = "^2024", optional = true }
distributed = { version = "^2024", optional = true }
[tool.poetry.group.tests.dependencies]
pytest = "^7"
coverage = "^6"
zninit = "^0.1"
attrs = "^22"
pydantic = "^2.6.2"
[tool.poetry.group.notebook.dependencies]
jupyterlab = "^3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3"
[tool.poetry.extras]
dask = ["dask", "distributed", "dask-jobqueue", "bokeh"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_lines = [
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:"
]
ignore_errors = true
[tool.black]
line-length = 90
preview = true
[tool.isort]
profile = 'black'
multi_line_output = 3
[tool.ruff]
line-length = 90
[tool.ruff.lint]
select = ["E", "F"] #, "D"] #, "N", "C", "ANN"]
extend-ignore = [
"D213", "D203"
]
[tool.codespell]
skip = "poetry.lock,examples/*,tmp/*"