about summary refs log tree commit diff
path: root/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info
diff options
context:
space:
mode:
Diffstat (limited to '.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info')
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/INSTALLER1
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/LICENSE19
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/METADATA87
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/RECORD74
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/WHEEL5
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/entry_points.txt18
-rw-r--r--.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/top_level.txt1
7 files changed, 205 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/INSTALLER b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/INSTALLER
new file mode 100644
index 00000000..a1b589e3
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/INSTALLER
@@ -0,0 +1 @@
+pip
diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/LICENSE b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/LICENSE
new file mode 100644
index 00000000..4c18adee
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/LICENSE
@@ -0,0 +1,19 @@
+Copyright 2006-2025 the Mako authors and contributors <see AUTHORS file>.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/METADATA b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/METADATA
new file mode 100644
index 00000000..44211198
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/METADATA
@@ -0,0 +1,87 @@
+Metadata-Version: 2.2
+Name: Mako
+Version: 1.3.9
+Summary: A super-fast templating language that borrows the best ideas from the existing templating languages.
+Home-page: https://www.makotemplates.org/
+Author: Mike Bayer
+Author-email: mike@zzzcomputing.com
+License: MIT
+Project-URL: Documentation, https://docs.makotemplates.org
+Project-URL: Issue Tracker, https://github.com/sqlalchemy/mako
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Environment :: Web Environment
+Classifier: Intended Audience :: Developers
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.8
+Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
+Classifier: Programming Language :: Python :: 3.12
+Classifier: Programming Language :: Python :: Implementation :: CPython
+Classifier: Programming Language :: Python :: Implementation :: PyPy
+Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
+Requires-Python: >=3.8
+Description-Content-Type: text/x-rst
+License-File: LICENSE
+Requires-Dist: MarkupSafe>=0.9.2
+Provides-Extra: testing
+Requires-Dist: pytest; extra == "testing"
+Provides-Extra: babel
+Requires-Dist: Babel; extra == "babel"
+Provides-Extra: lingua
+Requires-Dist: lingua; extra == "lingua"
+
+=========================
+Mako Templates for Python
+=========================
+
+Mako is a template library written in Python. It provides a familiar, non-XML 
+syntax which compiles into Python modules for maximum performance. Mako's 
+syntax and API borrows from the best ideas of many others, including Django
+templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded 
+Python (i.e. Python Server Page) language, which refines the familiar ideas
+of componentized layout and inheritance to produce one of the most 
+straightforward and flexible models available, while also maintaining close 
+ties to Python calling and scoping semantics.
+
+Nutshell
+========
+
+::
+
+    <%inherit file="base.html"/>
+    <%
+        rows = [[v for v in range(0,10)] for row in range(0,10)]
+    %>
+    <table>
+        % for row in rows:
+            ${makerow(row)}
+        % endfor
+    </table>
+
+    <%def name="makerow(row)">
+        <tr>
+        % for name in row:
+            <td>${name}</td>\
+        % endfor
+        </tr>
+    </%def>
+
+Philosophy
+===========
+
+Python is a great scripting language. Don't reinvent the wheel...your templates can handle it !
+
+Documentation
+==============
+
+See documentation for Mako at https://docs.makotemplates.org/en/latest/
+
+License
+========
+
+Mako is licensed under an MIT-style license (see LICENSE).
+Other incorporated projects may be licensed under different licenses.
+All licenses allow for non-commercial and commercial use.
diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/RECORD b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/RECORD
new file mode 100644
index 00000000..417302a3
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/RECORD
@@ -0,0 +1,74 @@
+../../../bin/mako-render,sha256=tizz-r195n-ueQMT2nJNVrVnzhVxNM6tS5x5LRa2RZc,249

+Mako-1.3.9.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4

+Mako-1.3.9.dist-info/LICENSE,sha256=aNcGTlPj_6jp9CCp5gS9LiBZ2cMwSS-m69TrPUgRFok,1098

+Mako-1.3.9.dist-info/METADATA,sha256=gImMYAE3i8pGSGz0W39Ch2SiUkYphuu5CDwgs2cviNA,2896

+Mako-1.3.9.dist-info/RECORD,,

+Mako-1.3.9.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91

+Mako-1.3.9.dist-info/entry_points.txt,sha256=LsKkUsOsJQYbJ2M72hZCm968wi5K8Ywb5uFxCuN8Obk,512

+Mako-1.3.9.dist-info/top_level.txt,sha256=LItdH8cDPetpUu8rUyBG3DObS6h9Gcpr9j_WLj2S-R0,5

+mako/__init__.py,sha256=0Umu9OqA4gU1dLRLTcAPieeVTbYoSlzmUeZk9FMt0N8,242

+mako/__pycache__/__init__.cpython-312.pyc,,

+mako/__pycache__/_ast_util.cpython-312.pyc,,

+mako/__pycache__/ast.cpython-312.pyc,,

+mako/__pycache__/cache.cpython-312.pyc,,

+mako/__pycache__/cmd.cpython-312.pyc,,

+mako/__pycache__/codegen.cpython-312.pyc,,

+mako/__pycache__/compat.cpython-312.pyc,,

+mako/__pycache__/exceptions.cpython-312.pyc,,

+mako/__pycache__/filters.cpython-312.pyc,,

+mako/__pycache__/lexer.cpython-312.pyc,,

+mako/__pycache__/lookup.cpython-312.pyc,,

+mako/__pycache__/parsetree.cpython-312.pyc,,

+mako/__pycache__/pygen.cpython-312.pyc,,

+mako/__pycache__/pyparser.cpython-312.pyc,,

+mako/__pycache__/runtime.cpython-312.pyc,,

+mako/__pycache__/template.cpython-312.pyc,,

+mako/__pycache__/util.cpython-312.pyc,,

+mako/_ast_util.py,sha256=hCbfnnizWEa3xRCA-uVyShC2HohSpmVvexz5as_lHc8,20247

+mako/ast.py,sha256=xYrdSiJFbf1CxJ9tU9pcPEWK0BYfwF2aDNDNLQG9PqQ,6642

+mako/cache.py,sha256=kA6FKGl5NeTBnSTcnhoPkSaeJ0JeYpF6GM8qzEZGSts,7680

+mako/cmd.py,sha256=Y2Y6VxNCYwO2Y8EXOdLTf5tpYgfdoondV6Ehlbh8a84,2813

+mako/codegen.py,sha256=N49EH57CcTUfKGzI8V7GFBrAEoFhRo9lkdXBzpFYzBY,47736

+mako/compat.py,sha256=owGbObdoF0C-6rCCs6Vnk3YGHv0bf0PpTja55Woxqb4,1820

+mako/exceptions.py,sha256=87Djuoi1IS5zyVFml1Z5zpCP1IoI7UMOH3h4ejt3x3g,12530

+mako/ext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0

+mako/ext/__pycache__/__init__.cpython-312.pyc,,

+mako/ext/__pycache__/autohandler.cpython-312.pyc,,

+mako/ext/__pycache__/babelplugin.cpython-312.pyc,,

+mako/ext/__pycache__/beaker_cache.cpython-312.pyc,,

+mako/ext/__pycache__/extract.cpython-312.pyc,,

+mako/ext/__pycache__/linguaplugin.cpython-312.pyc,,

+mako/ext/__pycache__/preprocessors.cpython-312.pyc,,

+mako/ext/__pycache__/pygmentplugin.cpython-312.pyc,,

+mako/ext/__pycache__/turbogears.cpython-312.pyc,,

+mako/ext/autohandler.py,sha256=QuhNiPSF1LZ53awQ1Qfpwu1Zi9RGOmrtCDnwCLgQzeE,1885

+mako/ext/babelplugin.py,sha256=mmt5fG3pcYII1QsrLEV3wH1ltj-C7uKl8vBIpAjxsKY,2091

+mako/ext/beaker_cache.py,sha256=4quuJQuXRKKUyF6kM43LQhJT1J2z1KSglRZVDW-7c1I,2578

+mako/ext/extract.py,sha256=ZUeaRL2jWcUlrpnhXFXJB0CUJfvQVGBF9tJr5nKJAWI,4659

+mako/ext/linguaplugin.py,sha256=sUZalJSI_XeON9aRBb2hds-ilVQaxHKlfCg_nAl7EuU,1935

+mako/ext/preprocessors.py,sha256=HYG45idRJUwJkDpswEELL8lPFLisQzgDhW5EHpTDGkI,576

+mako/ext/pygmentplugin.py,sha256=TnpJDyQeWTTGHZraMDpw8FB3PNzbmXhaZcjyIBudyi0,4753

+mako/ext/turbogears.py,sha256=egv8hradAnnSJwxtmW8uXAsqPUzX8cZZCXclmO_8hMA,2141

+mako/filters.py,sha256=IBXyGOby4eFE3UGvNLhJlzbe1FfwJ2dcEr1-gKO_Ljc,4658

+mako/lexer.py,sha256=GMq8yf0dEn04-xw2EVDEzaOLXMSVVQz9HyUbfwKnZKg,16321

+mako/lookup.py,sha256=4ALORJiL0wIdDvK1okW8rbjq2jL5F_TNASekDFQSULY,12428

+mako/parsetree.py,sha256=-wmyX_mklAoKhc-7Psx0U15EKpNSd8oGRXFmvk2JQWo,19021

+mako/pygen.py,sha256=689_jR0GG_8Am62Dmlm5h59VY6eyZAU3GroodqEDnZ0,10416

+mako/pyparser.py,sha256=3XNxTFQMLJCrRLQdtT5aKLOMU2faRiKfdmadS47vNm8,7478

+mako/runtime.py,sha256=ZsUEN22nX3d3dECQujF69mBKDQS6yVv2nvz_0eTvFGg,27804

+mako/template.py,sha256=Vn5nLoBY-YzSQJKvRPFGb4fiPyZryA5Q-8mWutv0b9A,23563

+mako/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0

+mako/testing/__pycache__/__init__.cpython-312.pyc,,

+mako/testing/__pycache__/_config.cpython-312.pyc,,

+mako/testing/__pycache__/assertions.cpython-312.pyc,,

+mako/testing/__pycache__/config.cpython-312.pyc,,

+mako/testing/__pycache__/exclusions.cpython-312.pyc,,

+mako/testing/__pycache__/fixtures.cpython-312.pyc,,

+mako/testing/__pycache__/helpers.cpython-312.pyc,,

+mako/testing/_config.py,sha256=k-qpnsnbXUoN-ykMN5BRpg84i1x0p6UsAddKQnrIytU,3566

+mako/testing/assertions.py,sha256=pfbGl84QlW7QWGg3_lo3wP8XnBAVo9AjzNp2ajmn7FA,5161

+mako/testing/config.py,sha256=wmYVZfzGvOK3mJUZpzmgO8-iIgvaCH41Woi4yDpxq6E,323

+mako/testing/exclusions.py,sha256=_t6ADKdatk3f18tOfHV_ZY6u_ZwQsKphZ2MXJVSAOcI,1553

+mako/testing/fixtures.py,sha256=nEp7wTusf7E0n3Q-BHJW2s_t1vx0KB9poadQ1BmIJzE,3044

+mako/testing/helpers.py,sha256=z4HAactwlht4ut1cbvxKt1QLb3yLPk1U7cnh5BwVUlc,1623

+mako/util.py,sha256=SNYeX2_PmajQJIR3-S1Yqxxylz8lwS65rC8YbCdTkUU,10638

diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/WHEEL b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/WHEEL
new file mode 100644
index 00000000..505164bc
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/WHEEL
@@ -0,0 +1,5 @@
+Wheel-Version: 1.0
+Generator: setuptools (75.8.0)
+Root-Is-Purelib: true
+Tag: py3-none-any
+
diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/entry_points.txt b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/entry_points.txt
new file mode 100644
index 00000000..30f31b2b
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/entry_points.txt
@@ -0,0 +1,18 @@
+[babel.extractors]
+mako = mako.ext.babelplugin:extract [babel]
+
+[console_scripts]
+mako-render = mako.cmd:cmdline
+
+[lingua.extractors]
+mako = mako.ext.linguaplugin:LinguaMakoExtractor [lingua]
+
+[pygments.lexers]
+css+mako = mako.ext.pygmentplugin:MakoCssLexer
+html+mako = mako.ext.pygmentplugin:MakoHtmlLexer
+js+mako = mako.ext.pygmentplugin:MakoJavascriptLexer
+mako = mako.ext.pygmentplugin:MakoLexer
+xml+mako = mako.ext.pygmentplugin:MakoXmlLexer
+
+[python.templating.engines]
+mako = mako.ext.turbogears:TGPlugin
diff --git a/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/top_level.txt b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/top_level.txt
new file mode 100644
index 00000000..2951cdd4
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/Mako-1.3.9.dist-info/top_level.txt
@@ -0,0 +1 @@
+mako