Metadata-Version: 2.1
Name: melthon
Version: 2.1.0
Summary: Minimalistic static site generator
Home-page: https://github.com/jenswbe/python-melthon
Author: Jens Willemsens
Author-email: contact@jensw.be
License: GPLv3
Project-URL: Documentation, https://python-melthon.readthedocs.io/
Project-URL: Changelog, https://python-melthon.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/jenswbe/python-melthon/issues
Description: ========
        Overview
        ========
        
        
        
        Minimalistic static site generator
        
        * Free software: GNU GPLv3 license
        
        Installation
        ============
        
        Use Docker (preferred way)::
        
            # --rm           : Remove container after execution
            # -u ${UID}      : Run container as current user
            # -v"$(pwd):/src": Make source and output accessible inside container
            docker run --rm -u ${UID} -v"$(pwd):/src" jenswbe/melthon
        
        Use pip::
        
            pip install melthon
        
        Documentation
        =============
        
        
        https://python-melthon.readthedocs.io/
        
        
        Changelog
        =========
        
        2.1.0 (2020-04-21)
        ------------------
        
        * Refresh project by adding support for Docker, improving unit tests and freezing dependencies
        
        2.0.0 (2020-05-22)
        ------------------
        
        * Simplify project by dropping support for all Python versions except for the current version (3.8)
        * Add support for repeated pages (e.g. events -> event details)
          
        1.4.0 (2020-01-19)
        ------------------
        
        * Add Python 3.8 support
        * Drop Python 3.4 support
        * Don't remove output folder, but remove it's contents instead. Removing the
          folder would cause permission issues, when serving with a local web server for development.
        
        1.3.0 (2019-11-27)
        ------------------
        
        * Add option to render Mako exceptions
        
        1.2.0 (2019-10-18)
        ------------------
        
        * Set default input encoding to UTF-8
        
        1.1.0 (2019-10-08)
        ------------------
        
        * Added subdirectory support
        * Added support for pretty urls (default)
        * Both <PAGE NAME>.template.mako and <PAGE NAME>.part.mako files won't be rendered now
        
        1.0.0 (2019-09-25)
        ------------------
        
        * Template rendering is working
        * Added YAML data file support
        * Improved program verbosity
        
        0.1.0 (2019-09-21)
        ------------------
        
        * Drop support for Python 2
        * Implement middlewares
        
        0.0.0 (2019-09-21)
        ------------------
        
        * First release on PyPI
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: ==3.8.*
Description-Content-Type: text/x-rst
