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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
[build-system]
requires = [ "whey", "whey-pth",]
build-backend = "whey"
[project]
name = "sphinx-jinja2-compat"
version = "0.3.0"
description = "Patches Jinja2 v3 to restore compatibility with earlier Sphinx versions."
readme = "README.rst"
requires-python = ">=3.6"
keywords = [ "documentation", "jinja2", "sphinx",]
dynamic = [ "classifiers", "dependencies",]
[project.license]
file = "LICENSE"
[[project.authors]]
name = "Dominic Davis-Foster"
email = "dominic@davis-foster.co.uk"
[project.urls]
Homepage = "https://github.com/sphinx-toolbox/sphinx-jinja2-compat"
"Issue Tracker" = "https://github.com/sphinx-toolbox/sphinx-jinja2-compat/issues"
"Source Code" = "https://github.com/sphinx-toolbox/sphinx-jinja2-compat"
[tool.mkrecipe]
conda-channels = [ "conda-forge", "domdfcoding",]
extras = "all"
[tool.whey]
base-classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
]
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
python-implementations = [ "CPython", "PyPy",]
platforms = [ "Windows", "macOS", "Linux",]
license-key = "MIT"
package = "sphinx_jinja2_compat"
[tool.whey.builders]
wheel = "whey_pth_wheel"
[tool.importcheck]
always = [
"sphinx_jinja2_compat",
"sphinx_jinja2_compat._installers",
"sphinx_jinja2_compat._meta_path",
"test_imports",
]
[tool.mypy]
python_version = "3.7"
namespace_packages = true
check_untyped_defs = true
warn_unused_ignores = true
no_implicit_optional = true
show_error_codes = true
[tool.snippet-fmt]
directives = [ "code-block",]
[tool.snippet-fmt.languages.python]
reformat = true
[tool.snippet-fmt.languages.TOML]
reformat = true
[tool.snippet-fmt.languages.ini]
[tool.snippet-fmt.languages.json]
[tool.whey-pth]
name = "_sphinx_jinja2_compat"
pth-content = "import sphinx_jinja2_compat"
[tool.dep_checker]
allowed_unused = [ "jinja2", "markupsafe", "standard_imghdr",]
[tool.dependency-dash."requirements.txt"]
order = 10
|