|
2 | 2 | build-backend = 'setuptools.build_meta'
|
3 | 3 | requires = ['setuptools >= 47', 'wheel']
|
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "Mako" |
| 7 | +version = "1.3.11" |
| 8 | +description = "A super-fast templating language that borrows the best ideas from the existing templating languages." |
| 9 | +readme = "README.rst" |
| 10 | +license = "MIT" |
| 11 | +license-files = [ "LICENSE" ] |
| 12 | +authors = [ |
| 13 | + { name = "Mike Bayer", email = "[email protected]" } |
| 14 | +] |
| 15 | +maintainers = [ |
| 16 | + { name = "Mako authors and contributors", email = "[email protected]" } |
| 17 | +] |
| 18 | +keywords = ["templating", "templates", "python"] |
| 19 | +classifiers = [ |
| 20 | + "Development Status :: 5 - Production/Stable", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + "Programming Language :: Python", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.8", |
| 25 | + "Programming Language :: Python :: 3.9", |
| 26 | + "Programming Language :: Python :: 3.10", |
| 27 | + "Programming Language :: Python :: 3.11", |
| 28 | + "Programming Language :: Python :: 3.12", |
| 29 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 30 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 31 | + "Topic :: Text Processing :: Markup" |
| 32 | +] |
| 33 | +requires-python = ">=3.8" |
| 34 | +dependencies = [ |
| 35 | + "MarkupSafe>=0.9.2" |
| 36 | +] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Homepage = "https://www.makotemplates.org/" |
| 40 | +Source = "https://github.com/sqlalchemy/mako" |
| 41 | + |
| 42 | +[project.scripts] |
| 43 | +mako-render = "mako.cmd:cmdline" |
| 44 | + |
| 45 | +[project.entry-points."python.templating.engines"] |
| 46 | +mako = "mako.ext.turbogears:TGPlugin" |
| 47 | + |
| 48 | +[project.entry-points."pygments.lexers"] |
| 49 | +mako = "mako.ext.pygmentplugin:MakoLexer" |
| 50 | +html_mako = "mako.ext.pygmentplugin:MakoHtmlLexer" |
| 51 | +xml_mako = "mako.ext.pygmentplugin:MakoXmlLexer" |
| 52 | +js_mako = "mako.ext.pygmentplugin:MakoJavascriptLexer" |
| 53 | +css_mako = "mako.ext.pygmentplugin:MakoCssLexer" |
| 54 | + |
| 55 | +[project.entry-points."babel.extractors"] |
| 56 | +mako = "mako.ext.babelplugin:extract" |
| 57 | + |
| 58 | +[project.entry-points."lingua.extractors"] |
| 59 | +mako = "mako.ext.linguaplugin:LinguaMakoExtractor" |
| 60 | + |
| 61 | +[tool.setuptools.packages.find] |
| 62 | +where = ["."] |
| 63 | +exclude = [ |
| 64 | + "test*", |
| 65 | + "examples*" |
| 66 | +] |
| 67 | + |
5 | 68 | [tool.black]
|
6 | 69 | line-length = 79
|
7 | 70 | target-version = ['py38']
|
0 commit comments