-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (58 loc) · 1.41 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
[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.11"
license = {text = "MIT License"}
authors = [
{ name = "François Pacull", email = "[email protected]" },
]
maintainers = [
{ name = "François Pacull", email = "[email protected]" },
]
keywords = ["python", "graph", "shortest path", "Dijkstra"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"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"
[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"
]