Metadata-Version: 2.1
Name: blog
Version: 0.1.3
Summary: A static website generator
Home-page: https://github.com/tomleo/blog
Author: Tom Leo
Author-email: tom@tomleo.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/tomleo/blog/issues
Project-URL: Funding, https://donate.pypi.org
Project-URL: Source, https://github.com/tomleo/blog/
Description: # Blog
        
        This is a simple static site generator. It traverses through a source directory of markdown files and creates a
        destination directory with equivalent HTML files.
        
        ```
        Markdown In -> HTML Out
        ```
        
        ## Installation
        
        ```
        $ python3.7 -m venv venv
        $ source venv/bin/activate
        $ pip install blog
        ```
        
        ## Usage
        
        ```
        (venv) $ python -m blog build /path/to/source-dir /path/to/build-dir
        ```
        
        ## Simple by design
        
        - Nothing smart is done around friendly URLs / generating folders with `index.html` files
            + If you want an `index.html` file, create an `index.md` file in your source directory
        - There is no database
        - There is no configuration (for now)
        
        **Need something more complex?**
        
        - Consider using Hugo, Gatsby, Django, writing your own server
        
Keywords: static website generator
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.7.*
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: dev
