Metadata-Version: 2.1
Name: django_commonstuff
Version: 0.9.1
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
Description: ===========
        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.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/x-rst
Provides-Extra: mobilesupport
