Metadata-Version: 1.0
Name: Paved
Version: 0.4.1
Summary: Common tasks for Paver-based projects.
Home-page: https://github.com/eykd/paved
Author: David Eyk
Author-email: eykd@eykd.net
License: BSD
Download-URL: http://pypi.python.org/pypi/Paved/
Description: =====
        Paved
        =====
        
        Paved provides common tasks for Paver-based projects.
        
        Quick Start
        -----------
        
        To start using ``paved``, inside your ``pavement.py``::
        
            from paved import *
        
        This will set up the ``options.paved`` namespace, and give you one
        extremely useful task: ``clean``, which takes care of cleaning up common
        clutter files like ``*.pyc``, ``*.pyo``, and ``*~``. Of course, it's
        customizable using ``options.paved.clean.patterns`` and
        ``options.paved.clean.dirs``.
        
        
        Other Modules
        -------------
        
        Use the same pattern of ``from paved.<module> import *`` for other
        available modules:
        
        - ``paved.dist``: distribution-related tasks and shortcuts
        - ``paved.pkg``: some packaging-related tasks
        - ``paved.django``: Django-related tasks
        - ``paved.util``: some useful utility functions
        - ``paved.util.pycheck``: python code checking functions
        
        
        Contributing
        ------------
        
        I'd love to have help with Paved. If you have common tasks that you're
        always copying and pasting from one pavement.py to the next, they
        probably have a place here. 
        
        The best way to contribute to Paved is to fork the project on Github
        and send pull requests to ``eykd``.
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
