-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5e4810
commit e402a41
Showing
9 changed files
with
106 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "kajiki" | ||
version = "1.0.0.dev1" | ||
description = "Fast XML-based template engine with Genshi syntax and Jinja blocks" | ||
readme = "README.rst" | ||
license = "MIT" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name = "Rick Copeland", email = "[email protected]" }, | ||
{ name = "Nando Florestan", email = "[email protected]" }, | ||
{ name = "Alessandro Molina", email = "[email protected]" }, | ||
{ name = "Jack Rosenthal", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Jack Rosenthal", email = "[email protected]" }, | ||
] | ||
keywords = [ | ||
"chameleon", | ||
"engine", | ||
"genshi", | ||
"html", | ||
"jinja", | ||
"jinja2", | ||
"mako", | ||
"template", | ||
"templating", | ||
"xhtml", | ||
"xml", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Programming Language :: Python", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Text Processing :: Markup :: HTML", | ||
"Topic :: Text Processing :: Markup :: XML", | ||
] | ||
dependencies = [ | ||
"linetable", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/jackrosenthal/kajiki" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/kajiki", | ||
"/tests", | ||
] | ||
|
||
[[tool.hatch.envs.hatch-test.matrix]] | ||
python = ["3.9", "3.10", "3.11", "3.12"] | ||
|
||
[tool.hatch.envs.default] | ||
installer = "uv" | ||
python = "3.12" | ||
|
||
[tool.hatch.envs.docs] | ||
dependencies = [ | ||
"sphinx", | ||
] | ||
|
||
[tool.hatch.envs.docs.scripts] | ||
build = "sphinx-build -M html docs docs/_build" |
This file was deleted.
Oops, something went wrong.