[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "directiva"
description = "A tiny, paste-friendly directive mini-language: ACTION:[<KIND>]NAME[@PATH][=NOTE]."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "prostomarkeloff" }]
keywords = ["directive", "glob", "policy", "lint", "rules"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/prostomarkeloff/directiva"
[tool.maturin]
features = ["python"]
module-name = "directiva._directiva"
python-source = "python"