-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
101 lines (86 loc) · 1.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools>=68.2.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = 'networkz'
description = 'Extended Graph-Algorithms Library on Top of NetworkX'
readme = 'README.MD'
requires-python = '>=3.9'
dynamic = ['version']
license = {file = "LICENSE"}
keywords = [
'Networks',
'Graph Theory',
'Mathematics',
'network',
'graph',
'discrete mathematics',
'math',
]
dependencies = [
"networkx",
]
[[project.authors]]
name = 'Ariel University'
email = '[email protected]'
[[project.maintainers]]
name = 'NetworkZ Developers'
email = '[email protected]'
[project.urls]
"Source Code" = 'https://github.com/ariel-research/networkz'
[project.optional-dependencies]
default = [
'networkx[default]',
]
developer = [
'networkx[developer]',
]
extra = [
'networkx[extra]',
]
test = [
'networkx[test]',
]
[tool.setuptools]
zip-safe = false
include-package-data = false
packages = [
'networkz',
'networkz.algorithms',
'networkz.algorithms.bipartite',
'networkz.algorithms.approximation',
'networkz.classes',
'networkz.generators',
'networkz.drawing',
'networkz.linalg',
'networkz.readwrite',
'networkz.tests',
'networkz.utils',
]
platforms = [
'Linux',
'Mac OSX',
'Windows',
'Unix',
]
[tool.setuptools.dynamic.version]
attr = 'networkz.__version__'
[tool.setuptools.package-data]
networkz = ['tests/*.py']
"networkz.algorithms" = ['tests/*.py']
"networkz.algorithms.bipartite" = ['tests/*.py']
"networkz.algorithms.approximation" = ['tests/*.py']
[tool.ruff]
line-length = 88
target-version = 'py39'
select = [
'I',
]
[tool.ruff.per-file-ignores]
"__init__.py" = ['I']
[tool.mypy]
ignore_missing_imports = true
exclude = 'subgraphviews|reportviews'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = " --doctest-modules --durations=10 --ignore=experiments"