Metadata-Version: 1.1
Name: django-pyc
Version: 0.2
Summary: Manage .pyc files in Django project.
Home-page: http://github.com/dex4er/django-pyc
Author: Piotr Roszatycki
Author-email: piotr.roszatycki@gmail.com
License: LGPL
Description: 
        django-pyc
        ==========
        
        django-pyc is a package that implements additional commands for Django's
        `manage.py` command.
        
        django-pyc allows to remove or recompile all `.pyc` files in the project
        or Python libraries.
        
        
        Installation
        ------------
        
        Add `django_pyc` to your installed apps in your settings.py file.
        
            INSTALLED_APPS = [
                'django_pyc',
                ...
            ]
        
        
        Usage
        -----
        
        From your shell, type:
        
            python manage.py clearpyc
        
        or
        
            python manage.py compilepyc
        
        
        Tests
        -----
        
        Travis CI Status
        
        # [![Build Status](https://travis-ci.org/dex4er/django-pyc.png?branch=master)](https://travis-ci.org/dex4er/django-pyc)
        
Keywords: django pyc clean compile compileall
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
