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
|
[build-system]
requires = ["maturin>=1.5"]
build-backend = "maturin"
[project]
name = "minijinja"
version = "2.12.0"
description = "An experimental Python binding of the Rust MiniJinja template engine."
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Armin Ronacher", email = "armin.ronacher@active-4.com" }
]
maintainers = [
{ name = "Armin Ronacher", email = "armin.ronacher@active-4.com" }
]
keywords = ["jinja", "template-engine"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Environment :: Web Environment",
"License :: OSI Approved :: Apache Software License",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
[project.urls]
Repository = "https://github.com/mitsuhiko/minijinja"
"Issue Tracker" = "https://github.com/mitsuhiko/minijinja/issues"
"Donate" = "https://github.com/sponsors/mitsuhiko"
[tool.maturin]
module-name = "minijinja._lowlevel"
python-source = "python"
strip = true
[tool.pyright]
include = ["python/**/*.pyi"]
exclude = ["python/**/*.py"]
typeCheckingMode = "strict"
pythonVersion = "3.9"
[dependency-groups]
dev = [
"maturin>=1.8.6",
"pyright>=1.1.401",
"pytest>=8.3.5",
]
|