Metadata-Version: 1.1
Name: django-static-autocollect
Version: 0.1
Summary: Runs collectstatic automatically.
Home-page: https://github.com/andreyrusanov/django-static-autocollect
Author: Andrey Rusanov
Author-email: andrey@rusanov.me
License: BSD
Description-Content-Type: UNKNOWN
Description: Static autocollect watches for changes in static files and runs `collectstatic` command for you.
        
        Quick start
        -----------
        
        1. Add "static_autocollect" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'static_autocollect',
            ]
        
        3. Run `python manage.py static_watch` to run static watcher.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires: Django(>= 1.6)
Requires: watchdog(== 0.8.3)
