This commit is contained in:
Sohel
2024-11-20 17:17:14 +01:00
parent aa14c170c8
commit 09b4990d6d
5404 changed files with 1184888 additions and 3 deletions

View File

@@ -0,0 +1,31 @@
Copyright (c) 2010-2014 by Simon Sapin, 2013-2014 by Igor Davydenko.
Some rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* The names of the contributors may not be used to endorse or
promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -0,0 +1,62 @@
Metadata-Version: 2.1
Name: Flask-FlatPages
Version: 0.8.2
Summary: Provides flat static pages to a Flask application
Author: Simon Sapin, Igor Davydenko, Padraic Calpin
Maintainer-email: Padraic Calpin <itsme@padraic.xyz>
Project-URL: Repository, https://github.com/Flask-FlatPages/Flask-FlatPages
Project-URL: Documentation, https://flask-flatpages.readthedocs.io/en/latest/
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: Flask >1.0
Requires-Dist: Jinja2 >=2.10.2
Requires-Dist: Markdown >=2.5
Requires-Dist: PyYAML >5.3.1
Requires-Dist: six
Requires-Dist: pytz ; python_version == "2.7"
Provides-Extra: codehilite
Requires-Dist: Pygmetns >=2.5.2 ; extra == 'codehilite'
===============
Flask-FlatPages
===============
.. image:: https://github.com/flask-FlatPages/flask-FlatPages/actions/workflows/test.yml/badge.svg?branch=master
:target: https://github.com/flask-FlatPages/flask-FlatPages/actions/workflows/test.yml/
.. image:: https://img.shields.io/pypi/v/Flask-FlatPages.svg
:target: https://pypi.python.org/pypi/Flask-FlatPages
Provides flat static pages to a Flask_ application, based on text files
as opposed to a relational database.
* Works on Python 2.7 and 3.6+
* BSD licensed
* Latest documentation `on Read the Docs`_
* Source, issues and pull requests `on Github`_
* Releases `on PyPI`_
* Install with ``pip install Flask-FlatPages``
.. _Flask: http://flask.pocoo.org/
.. _on Read the Docs: http://flask-flatpages.readthedocs.org/
.. _on Github: https://github.com/SimonSapin/Flask-FlatPages/
.. _on PyPI: http://pypi.python.org/pypi/Flask-FlatPages

View File

@@ -0,0 +1,16 @@
Flask_FlatPages-0.8.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
Flask_FlatPages-0.8.2.dist-info/LICENSE,sha256=RPamGyoEn-tZtkCtAE5C33ySOlvbvTOm9yDCHndScMY,1555
Flask_FlatPages-0.8.2.dist-info/METADATA,sha256=hxkge75xYe8VpJvx49HVBmcd-XQgmamvrYMT35jOyhI,2572
Flask_FlatPages-0.8.2.dist-info/RECORD,,
Flask_FlatPages-0.8.2.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
Flask_FlatPages-0.8.2.dist-info/top_level.txt,sha256=SZf1mE1dV8r0RfV8kgp2psYwzSRNpGIlWZeeSEqo5xs,16
flask_flatpages/__init__.py,sha256=Fw_NE9xJwBAFjeYFVTbQzCupLsr5sdtaPuRH2TUKt48,527
flask_flatpages/__pycache__/__init__.cpython-38.pyc,,
flask_flatpages/__pycache__/flatpages.cpython-38.pyc,,
flask_flatpages/__pycache__/imports.cpython-38.pyc,,
flask_flatpages/__pycache__/page.cpython-38.pyc,,
flask_flatpages/__pycache__/utils.cpython-38.pyc,,
flask_flatpages/flatpages.py,sha256=7XO62umai7QYmt-_zX8W-OMnCT86_6Xb_Jo0-xMq8fg,13997
flask_flatpages/imports.py,sha256=NS8dO9caxC18bZlo6ww_LO3pyieT7J5ISOObAvrEPXY,161
flask_flatpages/page.py,sha256=g-5m04JynJRIybtkhvKkVhLbUQpO17scx93t423zgk4,2482
flask_flatpages/utils.py,sha256=KAFOaktnApkmsJ8HHmYaaTQkZOJTEOw2LeOyp2deJMw,3286

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.41.3)
Root-Is-Purelib: true
Tag: py3-none-any