Metadata-Version: 1.1
Name: tooth.paste
Version: 1.1
Summary: Create a custom basic Python project
Home-page: https://github.com/maikroeder/tooth.paste.git
Author: Maik Roder
Author-email: maikroeder@gmail.com
License: gpl
Description: ===========
        Tooth.paste
        ===========
        
        Tooth.paste creates shiny new Python packages. Start your new packages with a prepared
        Sphinx documentation section, a test folder for your unit tests and a Makefile containing
        all the tools needed to keep your Python code clean. 
        
        To get started:
        
            $ cd tooth.paste
            $ virtualenv --no-site-packages .
            $ bin/python setup.py develop
        
        Create a basic namespace Python package:
        
            $ ./bin/templer tooth_basic_namespace
        
        Inside of this new Python package you can directly run make:
        
        - To get started with the new package:
        
            make build
        
        - To build the html Sphinx documentation:
        
            make docs
        
        - Have a look at the documentation:
        
            docs/build/html/index.html 
        
        - To run the unit tests:
        
            make test
        
        - To run the coverage:
        
            make coverage
          
        - To run pylint:
        
            make pylint
        
        - To run flake8:
        
            make flake8
        
        - To run pep8:
        
            make pep8
        
        Changelog
        =========
        
        1.1 (2012-09-12)
        ----------------
        
        - fix pylint, add pep8 and pyflakes, add sloccount
        
        1.0 (2012-09-07)
        ----------------
        
        - Package created using templer
          [Maik Roder]
Keywords: Tooth,paste
Platform: UNKNOWN
Classifier: Programming Language :: Python
