-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
93 lines (79 loc) · 2.25 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
[build-system]
build-backend = 'setuptools.build_meta'
requires = ['setuptools>=61.2']
[project]
name = "nx-parallel"
description = "A parallel backend for NetworkX. It uses joblib to run NetworkX algorithms on multiple CPU cores."
readme = "README.md"
requires-python = ">=3.11"
dynamic = ['version']
keywords = ["networkx", "graphs", "algorithms", "parallel"]
license = {text = "BSD-3-Clause"}
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
]
dependencies = [
"networkx>=3.4.2",
"joblib>=1.4.2"
]
[[project.authors]]
name = "NetworkX Devs"
email = "networkx-core@discuss.scientific-python.org"
[[project.maintainers]]
name = 'NetworkX Developers'
email = 'networkx-discuss@googlegroups.com'
[project.urls]
"Bug Tracker" = 'https://github.com/networkx/nx-parallel/issues'
"Source Code" = 'https://github.com/networkx/nx-parallel'
[project.entry-points."networkx.backends"]
parallel = "nx_parallel.interface:BackendInterface"
[project.entry-points."networkx.backend_info"]
parallel = "_nx_parallel:get_info"
[project.optional-dependencies]
developer = [
'pre-commit==3.8.0',
'ruff==0.6.7',
]
test = [
'pytest>=7.2',
'pytest-order>=1.3.0',
'numpy>=1.23',
'scipy>=1.9,!=1.11.0,!=1.11.1',
]
[tool.setuptools]
zip-safe = false
include-package-data = false
packages = [
'nx_parallel',
'_nx_parallel',
'nx_parallel.algorithms',
'nx_parallel.algorithms.approximation',
'nx_parallel.algorithms.bipartite',
'nx_parallel.algorithms.centrality',
'nx_parallel.algorithms.connectivity',
'nx_parallel.algorithms.shortest_paths',
'nx_parallel.utils',
]
platforms = [
'Linux',
'Mac OSX',
'Windows',
'Unix',
]
[tool.setuptools.dynamic.version]
attr = 'nx_parallel.__version__'
[tool.ruff]
line-length = 88
target-version = 'py310'
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ['I', 'F403', 'F401']
[tool.ruff.format]
docstring-code-format = true