Metadata-Version: 1.1
Name: catsup
Version: 0.3.6
Summary: Catsup: a lightweight static site generator
Home-page: https://github.com/whtsky/Catsup
Author: whtsky
Author-email: whtsky@me.com
License: MIT License
Description: Catsup
        ----------------
        
        .. image:: https://pypip.in/d/catsup/badge.png
                :target: https://pypi.python.org/pypi/catsup/
        
        .. image:: https://travis-ci.org/whtsky/Catsup.png?branch=master
                :target: https://travis-ci.org/whtsky/Catsup
        
        .. image:: https://coveralls.io/repos/whtsky/catsup/badge.png?branch=master
                :target: https://coveralls.io/r/whtsky/catsup?branch=master
        
        .. image:: https://badge.waffle.io/whtsky/catsup.png?label=ready
                :target: http://waffle.io/whtsky/catsup
        
        Catsup is a lightweight static website generator which aims to be simple and elegant.
        Documentation is available at RTFD: https://catsup.readthedocs.org/en/v0.3.6/
        
        Quick Start
        ===============
        
        First, install Catsup via pip ::
        
            $ pip install catsup
        
        Then, create a new Catsup site ::
        
            $ mkdir site
            $ cd site
            $ catsup init
        
        Edit the config file ::
        
            vim config.json
        
        Write some posts ::
        
            $ vim posts/hello-world.md
            $ cat posts/hello-world.md
            # Hello World
        
            - tags: hello world, catsup
            - time: 2013-08-30 12:00
        
            ---
        
            Hello, World!
        
        Build your site and deploy ::
        
            catsup build && catsup deploy
        
        For more information, please read the document: https://catsup.readthedocs.org/en/v0.3.6/
        
Keywords: catsup,blog,site,static,static blog,static site,generator
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
