| 
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 | +keywords = ["templating", "templates", "python"]  | 
 | 16 | +classifiers = [  | 
 | 17 | +  "Development Status :: 5 - Production/Stable",  | 
 | 18 | +  "Intended Audience :: Developers",  | 
 | 19 | +  "Programming Language :: Python",  | 
 | 20 | +  "Programming Language :: Python :: 3",  | 
 | 21 | +  "Programming Language :: Python :: 3.8",  | 
 | 22 | +  "Programming Language :: Python :: 3.9",  | 
 | 23 | +  "Programming Language :: Python :: 3.10",  | 
 | 24 | +  "Programming Language :: Python :: 3.11",  | 
 | 25 | +  "Programming Language :: Python :: 3.12",  | 
 | 26 | +  "Topic :: Internet :: WWW/HTTP :: Dynamic Content",  | 
 | 27 | +  "Topic :: Software Development :: Libraries :: Python Modules",  | 
 | 28 | +  "Topic :: Text Processing :: Markup"  | 
 | 29 | +]  | 
 | 30 | +requires-python = ">=3.8"  | 
 | 31 | +dependencies = [  | 
 | 32 | +  "MarkupSafe>=0.9.2"  | 
 | 33 | +]  | 
 | 34 | + | 
 | 35 | +[project.urls]  | 
 | 36 | +Homepage = "https://www.makotemplates.org/"  | 
 | 37 | +Source = "https://github.com/sqlalchemy/mako"  | 
 | 38 | + | 
 | 39 | +[project.scripts]  | 
 | 40 | +mako-render = "mako.cmd:cmdline"  | 
 | 41 | + | 
 | 42 | +[project.entry-points."python.templating.engines"]  | 
 | 43 | +mako = "mako.ext.turbogears:TGPlugin"  | 
 | 44 | + | 
 | 45 | +[project.entry-points."pygments.lexers"]  | 
 | 46 | +mako = "mako.ext.pygmentplugin:MakoLexer"  | 
 | 47 | +html_mako = "mako.ext.pygmentplugin:MakoHtmlLexer"  | 
 | 48 | +xml_mako = "mako.ext.pygmentplugin:MakoXmlLexer"  | 
 | 49 | +js_mako = "mako.ext.pygmentplugin:MakoJavascriptLexer"  | 
 | 50 | +css_mako = "mako.ext.pygmentplugin:MakoCssLexer"  | 
 | 51 | + | 
 | 52 | +[project.entry-points."babel.extractors"]  | 
 | 53 | +mako = "mako.ext.babelplugin:extract"  | 
 | 54 | + | 
 | 55 | +[project.entry-points."lingua.extractors"]  | 
 | 56 | +mako = "mako.ext.linguaplugin:LinguaMakoExtractor"  | 
 | 57 | + | 
 | 58 | +[tool.setuptools.packages.find]  | 
 | 59 | +where = ["."]  | 
 | 60 | +exclude = [  | 
 | 61 | +    "test*",  | 
 | 62 | +    "examples*"  | 
 | 63 | +]  | 
 | 64 | + | 
5 | 65 | [tool.black]  | 
6 | 66 | line-length = 79  | 
7 | 67 | target-version = ['py38']  | 
0 commit comments