Metadata-Version: 1.0
Name: django-sendsms-admin
Version: 0.1.0
Summary: A database delivery backend for django-sendsms (for debugging).
Home-page: http://github.com/stefanfoulis/django-sendsms-admin
Author: Stefan Foulis
Author-email: stefan.foulis@gmail.com
License: BSD
Description: ====================
        django-sendsms-admin
        ====================
        
        A delivery backend for django-sendsms that delivers messages to the database instead of sending them. This is meant for
        debugging. Also allows sending SMSs from the admin interface.
        
        Installation
        ============
        
        ::
        
            pip install django-sendsms-admin
        
        Then add ``sendsms_admin`` to ``INSTALLED_APPS`` and run ``syncdb`` or ``migrate``.
        This already allows sending messages from admin. To enable the debug backend to
        place all SMSs into the database::
        
            SENDSMS_BACKEND = 'sendsms_admin.backend.DatabaseSmsBackend'
        
        
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
