Metadata-Version: 2.0
Name: catsup
Version: 0.3.9
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-Content-Type: UNKNOWN
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
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: argh (==0.24.1)
Requires-Dist: docopt (==0.6.1)
Requires-Dist: houdini.py (==0.1.0)
Requires-Dist: Jinja2 (==2.7.2)
Requires-Dist: MarkupSafe (==0.18)
Requires-Dist: misaka (==1.0.2)
Requires-Dist: parguments (==0.3.2)
Requires-Dist: pathtools (==0.1.2)
Requires-Dist: Pygments (==1.6)
Requires-Dist: PyYAML (==3.10)
Requires-Dist: tornado (==3.2)
Requires-Dist: ujson (==1.33)
Requires-Dist: watchdog (==0.7.0)

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


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.9/

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.9/


