Metadata-Version: 1.1
Name: django-sympa
Version: 0.1
Summary: Add a view to interact with sympa
Home-page: https://github.com/unistra/django-sympa/
Author: di-dip-unistra
Author-email: di-dip@unistra.fr
License: PSF
Description: ============
        Django-sympa
        ============
        
        .. image:: https://landscape.io/github/unistra/django-sympa/master/landscape.svg?style=flat
           :target: https://landscape.io/github/unistra/django-sympa/master
           :alt: Code Health
        
        .. image:: https://secure.travis-ci.org/unistra/django-sympa.png?branch=master
            :target: https://travis-ci.org/unistra/django-sympa
        
        .. image:: https://coveralls.io/repos/unistra/django-sympa/badge.png?branch=master
            :target: https://coveralls.io/r/unistra/django-sympa?branch=master
        
        .. image:: https://img.shields.io/pypi/v/django-sympa.svg
            :target: https://crate.io/packages/django-sympa/
        
        .. image:: https://img.shields.io/pypi/dm/django-sympa.svg
            :target: https://crate.io/packages/django-sympa/
        
        Add a route to exposed immediately your app users to sympa in right format. This
        will synchronize users to a configured mai list.
        
        Install
        =======
        
        With pip ::
        
            $> pip install django-sympa
        
        
        In your django project, be sure that the ``auth`` application is installed : ::
        
            # settings.py
            INSTALLED_APPS = (
                ...,
                'django.contrib.auth',
                ...
            )
        
        Add the ``sympa`` application to your project. ``INSTALLED_APPS`` looks like : ::
        
            # settings.py
            INSTALLED_APPS = (
                ...,
                'django.contrib.auth',
                ...,
                'sympa'
            )
        
        Add a route to your base urls configuration : ::
        
            # urls.py
        
            urlpatterns = (
                ...
                url('^users.sympa$', 'sympa.views.users', name='sympa_users'),
                ...
            )
        
        That's it !
        
Keywords: django,Université de Strasbourg,sympa,mail,users
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 1.4
Classifier: Framework :: Django :: 1.5
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 1.7
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Communications :: Email :: Mailing List Servers
