forked from networkx/nx-parallel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.01 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nx-parallel"
authors = [
{name = "NetworkX Devs", email = "networkx-core@discuss.scientific-python.org"},
]
description = "An experimental parallel backend for NetworkX"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["networkx", "algorithms", "parallel"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"networkx",
"joblib"
]
dynamic = ["version"]
[tool.hatch.version]
path = "nx_parallel/__init__.py"
[project.optional-dependencies]
developer = [
'pre-commit',
'pytest',
]
[project.entry-points."networkx.backends"]
parallel = "nx_parallel.interface:Dispatcher"
[project.entry-points."networkx.backend_info"]
parallel = "_nx_parallel:get_info"
[tool.hatch.build.targets.wheel]
packages = ["_nx_parallel", "nx_parallel",]
[tool.ruff]
line-length = 88
target-version = 'py310'
[tool.ruff.per-file-ignores]
"__init__.py" = ['I', 'F403']