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
|
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "wheezy.template"
dynamic = ["version"]
description = "A lightweight template library"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Andriy Kornatskyy", email = "andriy.kornatskyy@live.com" },
]
keywords = ["html", "markup", "template", "preprocessor"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Widget Sets",
"Topic :: Text Processing :: Markup :: HTML",
]
dependencies = []
[project.optional-dependencies]
cython = ["Cython>=3.0"]
[project.urls]
Homepage = "https://github.com/akornatskyy/wheezy.template"
Source = "https://github.com/akornatskyy/wheezy.template"
Issues = "https://github.com/akornatskyy/wheezy.template/issues"
[project.scripts]
"wheezy.template" = "wheezy.template.console:main"
[tool.setuptools]
packages = ["wheezy.template", "wheezy.template.ext"]
package-dir = { "" = "src" }
zip-safe = false
include-package-data = true
[tool.setuptools.package-data]
"wheezy.template" = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "wheezy.template.__version__" }
[tool.coverage.run]
source = [
"src/wheezy/template",
]
omit = [
"*/test_*.py",
"*/tests/*",
]
|