-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (77 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
84 lines (77 loc) · 1.95 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
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.3.1", "wheel", "Cython>=3", "numpy>=1.26"]
build-backend = "setuptools.build_meta"
[project]
name = "edsger"
dynamic = ["version"]
description = "Graph algorithms in Cython."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT License"}
authors = [
{ name = "François Pacull", email = "francois.pacull@architecture-performance.fr" },
]
maintainers = [
{ name = "François Pacull", email = "francois.pacull@architecture-performance.fr" },
]
keywords = ["python", "graph", "shortest path", "Dijkstra"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
dependencies = [
"setuptools",
"setuptools_scm",
"numpy>=1.26",
"Cython>=3",
"pandas",
]
[project.optional-dependencies]
# Dev dependencies.
dev = [
"black"
]
# Test dependencies.
# pip install .'[test]' on Linux
test = [
"pytest",
"scipy<1.11"
]
# Doc dependencies.
doc = [
"sphinx",
"sphinx_design",
"sphinx_rtd_theme"
]
[project.urls]
Repository = "https://github.com/aetperf/Edsger"
Documentation = "https://edsger.readthedocs.io"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
write_to = "src/edsger/_version.py"
write_to_template = '__version__ = "{version}"'
[tool.pytest.ini_options]
testpaths = [
"tests"
]
markers = [
"performance: marks tests as performance benchmarks (deselect with '-m \"not performance\"')",
]
[tool.black]
extend-exclude = '''
/(
old
| notebooks
)/
'''
[tool.cibuildwheel]
# Skip 32-bit i686 architectures (outdated, rarely needed)
skip = "*_i686"