forked from networkx/nx-parallel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 871 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nx-parallel"
authors = [
{name = "NetworkX Devs", email = "[email protected]"},
]
description = "An experimental parallel backend for NetworkX"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["networkx", "algorithms", "parallel"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"networkx",
"joblib"
]
version = '0.0.1'
[project.optional-dependencies]
developer = [
'pre-commit',
'pytest',
]
[project.entry-points."networkx.plugins"]
parallel = "nx_parallel.interface:Dispatcher"
[tool.setuptools]
py-modules = []
[tool.ruff]
line-length = 88
target-version = 'py311'
[tool.ruff.per-file-ignores]
"__init__.py" = ['I', 'F403']