Metadata-Version: 1.1
Name: simpress
Version: 0.1.1
Summary: Simple document system by GitHub flavored Markdown.
Home-page: http://github.com/nekoya/simpress
Author: Ryo Miyake
Author-email: ryo.studiom@gmail.com
License: MIT
Description: Simpress
        ========
        
        Simpress, simple document server based on GitHub flavored Markdown.
        
        Installation
        ------------
        
        You can install it through PyPI (the Python Package Index).
        
        .. code-block:: python
        
          pip install simpress
        
        Quickstart
        ----------
        
        .. code-block:: python
        
          press-init <your document dir>
        
        press-init command creates the new document directory, so your document dir shouldn't exist in advance.
        
        .. code-block:: bash
        
          cd <your document dir>
          ./press.py preview
        
        Start preview server on port 3776 in default.
        
        Edit `index.md` or add new file(s).
        
        Publish static HTMLs
        --------------------
        
        .. code-block:: bash
        
          ./press.py publish
        
        Publish all pages as static file in `<your document dir>/_deploy/`.
        
        Customize
        ---------
        
        Configuration file
        ~~~~~~~~~~~~~~~~~~
        
        `press.py` has a little config parameters.
        
        Your original theme
        ~~~~~~~~~~~~~~~~~~~
        
        You can customize the document theme in `_templates/*`, `css/*`, `js/*` on your document directory.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Documentation
