Metadata-Version: 1.0
Name: bootstrapy
Version: 0.0.1
Summary: A python bootstrap application, so that you can focus on writing code
Home-page: http://github.com/kirang89/bootstrapy
Author: Kiran Gangadharan
Author-email: kiran.daredevil@gmail.com
License: Copyright (c) Kiran Gangadharan, All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Description: ==========
        bootstrapy
        ==========
        
        A bootstrap application that takes away the pain of setting up a python application for production and lets you focus on coding instead.
        
        Usage
        -----
        ::
        
            #Sets up environment and installs dependencies
            $ make env
        
            #Activate the environment
            $ . env/bin/activate
        
            #Shows the list of commands available
            $ make help
        
              env         create a development environment using virtualenv
              deps        install dependencies
              clean       remove unwanted stuff
              lint        check style with flake8
              test        run all your tests using nose
              production  run test suite and do a release
              release     package and upload a release
              sdist       package
        
        Setup Notes
        -----------
        
        * In order to be able to generate PDF and PS files from reStructuredText using LaTeX on Debian-based systems you need to install the following software:
        
            ``sudo apt-get install wget build-essential python2.5-dev texlive-full``
        
        * Use `webhooks`_ to update docs at `Read The Docs`_ whenever you make a commit to your project.
        
        .. _webhooks: https://read-the-docs.readthedocs.org/en/latest/webhooks.html
        .. _Read The Docs: https://readthedocs.org/
        
        License
        -------
        
        bootstrapy is BSD licensed, so feel free to use it as you like.
        
        
Keywords: python,project,project template,bootstrap
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
