-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
24 lines (22 loc) · 857 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "pystaleds"
description = "CLI tool for checking stale docstrings."
urls = { "Repository" = "https://github.com/AloizioMacedo/pystaleds" }
authors = [{ name = "Aloizio Macedo", email = "aloizioMacedo@gmail.com" }]
maintainers = [{ name = "Aloizio Macedo", email = "aloizioMacedo@gmail.com" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Documentation",
]
keywords = ["rust", "docstrings", "pre-commit", "cli", "tool", "testing", "ci"]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]