Metadata-Version: 2.1
Name: django-commonstuff
Version: 0.8.5
Summary: Reusable app, what collects django-related code, used in most of my projects.
Home-page: UNKNOWN
Author: Yuriy Zemskov
Author-email: zemskyura@gmail.com
License: WTFPL License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/x-rst
Requires-Dist: Django (<2.0,>=1.11.9)
Requires-Dist: robot-detection (>=0.3)
Requires-Dist: pytils
Requires-Dist: csscompressor (>=0.9.3)
Requires-Dist: jsmin (>=2.1.6)
Requires-Dist: Pillow (>=4.3.0)
Provides-Extra: mobilesupport
Requires-Dist: django-mobile (>=0.5.1) ; extra == 'mobilesupport'

===========
CommonStuff
===========

CommonStuff is a Django reusable app, what holds templatetags, management
commands, admin filters, middlewares, abstract models, etc. used in most of
my Django projects.

Think of it as a custom django-annoying. This app is in public mainly because
it is a dependency of another reusable app.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. `pip install django_commonstuff`

2. Add "commonstuff" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = (
        'django.contrib.sites',  # optional, but usefull to commonstuff app
        ...
        'commonstuff',
    )

3. Configure django_commonstuff in settings.py (see docs/SETTINGS.txt).

4. Run `python manage.py migrate` to create models.


