summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg70
1 files changed, 70 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 88fe23f..63d50ba 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,3 +1,73 @@
+[metadata]
+name = Mako
+version = attr: mako.__version__
+description = A super-fast templating language that borrows the \
+ best ideas from the existing templating languages.
+long_description = file: README.rst
+long_description_content_type = text/x-rst
+url = https://www.makotemplates.org/
+author = Mike Bayer
+author_email = mike@zzzcomputing.com
+license = MIT
+license_file = LICENSE
+classifiers =
+ Development Status :: 5 - Production/Stable
+ License :: OSI Approved :: MIT License
+ Environment :: Web Environment
+ Intended Audience :: Developers
+ Programming Language :: Python
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.6
+ Programming Language :: Python :: 3.7
+ Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
+ Programming Language :: Python :: 3.10
+ Programming Language :: Python :: Implementation :: CPython
+ Programming Language :: Python :: Implementation :: PyPy
+ Topic :: Internet :: WWW/HTTP :: Dynamic Content
+project_urls =
+ Documentation=https://docs.makotemplates.org
+ Issue Tracker=https://github.com/sqlalchemy/mako
+
+[options]
+packages = find:
+python_requires = >=3.6
+zip_safe = false
+
+install_requires =
+ MarkupSafe >= 0.9.2
+
+[options.packages.find]
+exclude =
+ test*
+ examples*
+
+[options.extras_require]
+babel =
+ Babel
+lingua =
+ lingua
+
+[options.entry_points]
+python.templating.engines =
+ mako = mako.ext.turbogears:TGPlugin
+
+pygments.lexers =
+ mako = mako.ext.pygmentplugin:MakoLexer
+ html+mako = mako.ext.pygmentplugin:MakoHtmlLexer
+ xml+mako = mako.ext.pygmentplugin:MakoXmlLexer
+ js+mako = mako.ext.pygmentplugin:MakoJavascriptLexer
+ css+mako = mako.ext.pygmentplugin:MakoCssLexer
+
+babel.extractors =
+ mako = mako.ext.babelplugin:extract [babel]
+
+lingua.extractors=
+ mako = mako.ext.linguaplugin:LinguaMakoExtractor [lingua]
+
+console_scripts=
+ mako-render = mako.cmd:cmdline
+
[egg_info]
tag_build = dev