-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
38 lines (32 loc) · 974 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
[project]
name = "graphlib2"
repository = "https://github.com/adriangb/graphlib2"
description = "Rust port of the Python stdlib graphlib modules"
authors = [
{name = "Adrian Garcia Badaracco"}
]
license = { text = "MIT" }
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"typing-extensions>=3; python_version < '3.8'",
]
requires-python = ">=3.7"
[project.urls]
homepage = "https://github.com/adriangb/graphlib2"
documentation = "https://github.com/adriangb/graphlib2/README.md"
repository = "https://github.com/adriangb/graphlib2"
[build-system]
requires = ["maturin>=0.13.0<14"]
build-backend = "maturin"
[tool.maturin]
sdist-include = ["Cargo.lock"]
strip = true
[tool.isort]
profile = "black"