Metadata-Version: 1.1
Name: soil
Version: 0.1.4-dev
Summary: Really lightweight web prototyping.
Home-page: https://github.com/kuyan/soil
Author: kuyan
Author-email: kuyanatan.nlao@gmail.com
License: LICENSE.txt
Description: soil
        ====
        
        Better prototyping with Jinja2 and a shameless ripoff of `lucuma/Clay`_.
        
        Installing
        ----------
        ::
        
            $ pip install soil
        
        Or, if you *really* wanted to::
        
            $ git clone git://github.com/kuyan/soil.git
            $ cd soil && python setup.py install
        
        Or, if you *really*, **really** wanted to::
        
            $ easy_install soil
        
        But, to quote `Kenneth Reitz`_:
        
            ... you really shouldn't do that.
        
        
        Quick Start
        -----------
        
        First, create a new project and start editing::
        
            $ shovel new new_project/
            $ cd new_project/
        
        Edit templates (see: `Jinja2`_)::
        
            $ vim templates/index.html
        
        Check out your project in your browser::
        
            $ shovel run
        
        You'll be able to see your site at http://127.0.0.1:5000.
        
        Turn the templates into static HTML::
        
            $ shovel build
        
        The output will be stored in the ``build/`` directory.
        
        Want to know more? Check out the `documentation <http://soil.readthedocs.org/en/latest/>`_.
        
        Features
        --------
        
        -  Extensions!
        -  Uses `Jinja2`_ for templating.
        -  And that’s pretty much everything notable. ``soil`` is pretty simple.
        
        Dependencies
        ------------
        
        -  Python 2.7 (or at least that’s all I’ve tested it on.)
        -  `Jinja2`_
        -  `Werkzeug`_
        -  `termcolor`_
        -  `docopt`_
        
        Testing
        -------
        
        Soil uses `pytest`_. To run the tests::
        
            pip install pytest
            git clone git://github.com/kuyan/soil.git
            py.test soil/soil/test/
        
        -----
        
        +--------------+----------------------------+
        | MIT licensed | Copyright (C) 2012 Natan L |
        +--------------+----------------------------+
        
        .. _lucuma/Clay: http://github.com/lucuma/Clay
        .. _Kenneth Reitz: https://github.com/kennethreitz/
        .. _Jinja2: https://github.com/mitsuhiko/jinja2
        .. _Werkzeug: https://github.com/mitsuhiko/werkzeug
        .. _termcolor: http://pypi.python.org/pypi/termcolor/
        .. _docopt: https://github.com/docopt/docopt
        .. _pytest: http://pytest.org/latest/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
