Metadata-Version: 1.1
Name: django-epfl-utils
Version: 0.0.3
Summary: A simple Django app to provide tools common to several applications at EPFL.
Home-page: https://charmier@git.epfl.ch/repo/django-utils-epfl.git
Author: Charmier Grégory
Author-email: gregory.charmier@epfl.ch
License: LGPLv3
Description: ==================
        Django-epfl-utils
        ==================
        
        Django-epfl-utils is a simple Django app to provide tools common to several 
        applications at EPFL.
        
        
        Install and configure memcached 
        ***********************************
        
        After installing Memcached itself, you’ll need to install a Memcached binding.
        We use python-memcached third party.
        
        CACHES = {
        ...
            'memcached': {
                'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
                'LOCATION': '127.0.0.1:11211',
            },
        ...
        }
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
