Fix build error at python 3.12
[platform/upstream/python3-mako.git] / PKG-INFO
1 Metadata-Version: 2.1
2 Name: Mako
3 Version: 1.2.4
4 Summary: A super-fast templating language that borrows the best ideas from the existing templating languages.
5 Home-page: https://www.makotemplates.org/
6 Author: Mike Bayer
7 Author-email: mike@zzzcomputing.com
8 License: MIT
9 Project-URL: Documentation, https://docs.makotemplates.org
10 Project-URL: Issue Tracker, https://github.com/sqlalchemy/mako
11 Platform: UNKNOWN
12 Classifier: Development Status :: 5 - Production/Stable
13 Classifier: License :: OSI Approved :: MIT License
14 Classifier: Environment :: Web Environment
15 Classifier: Intended Audience :: Developers
16 Classifier: Programming Language :: Python
17 Classifier: Programming Language :: Python :: 3
18 Classifier: Programming Language :: Python :: 3.7
19 Classifier: Programming Language :: Python :: 3.8
20 Classifier: Programming Language :: Python :: 3.9
21 Classifier: Programming Language :: Python :: 3.10
22 Classifier: Programming Language :: Python :: Implementation :: CPython
23 Classifier: Programming Language :: Python :: Implementation :: PyPy
24 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
25 Requires-Python: >=3.7
26 Description-Content-Type: text/x-rst
27 Provides-Extra: testing
28 Provides-Extra: babel
29 Provides-Extra: lingua
30 License-File: LICENSE
31
32 =========================
33 Mako Templates for Python
34 =========================
35
36 Mako is a template library written in Python. It provides a familiar, non-XML 
37 syntax which compiles into Python modules for maximum performance. Mako's 
38 syntax and API borrows from the best ideas of many others, including Django
39 templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded 
40 Python (i.e. Python Server Page) language, which refines the familiar ideas
41 of componentized layout and inheritance to produce one of the most 
42 straightforward and flexible models available, while also maintaining close 
43 ties to Python calling and scoping semantics.
44
45 Nutshell
46 ========
47
48 ::
49
50     <%inherit file="base.html"/>
51     <%
52         rows = [[v for v in range(0,10)] for row in range(0,10)]
53     %>
54     <table>
55         % for row in rows:
56             ${makerow(row)}
57         % endfor
58     </table>
59
60     <%def name="makerow(row)">
61         <tr>
62         % for name in row:
63             <td>${name}</td>\
64         % endfor
65         </tr>
66     </%def>
67
68 Philosophy
69 ===========
70
71 Python is a great scripting language. Don't reinvent the wheel...your templates can handle it !
72
73 Documentation
74 ==============
75
76 See documentation for Mako at https://docs.makotemplates.org/en/latest/
77
78 License
79 ========
80
81 Mako is licensed under an MIT-style license (see LICENSE).
82 Other incorporated projects may be licensed under different licenses.
83 All licenses allow for non-commercial and commercial use.
84
85