directiva 0.2.0

A tiny, paste-friendly directive mini-language: ACTION:[<KIND>]NAME[@PATH][=NOTE]
Documentation
[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"]
# mixed layout: the compiled extension is `directiva._directiva`; the Python package under
# `python/directiva/` re-exports it and ships the type stubs (`.pyi`) + `py.typed`.
module-name = "directiva._directiva"
python-source = "python"