Metadata-Version: 1.1
Name: django-smscoin
Version: 0.1
Summary: Django application to use sms processing system http://smscoin.com/
Home-page: https://github.com/Arpaso/smscoin
Author: Arpaso
Author-email: arvid@arpaso.com
License: UNKNOWN
Download-URL: https://github.com/Arpaso/smscoin/tarball/0.1
Description: Django payment gateway for smscoin service
        ==========================================
        
        Payment gateway site: http://smscoin.com
        
        Usage
        =====
        
        * You have to use south migrations to update your database::
        
            python manage.py migrate
        
        * Django form field: ***SMSKeyField**. Example in **forms.py**::
        
            from smscoin.fields import SMSKeyField
            class SMSForm(forms.ModelForm):
        
                sms_pair = SMSKeyField(label=_("Access code"), required=True)
        
        * **settings.py**::
        
            SMSCOIN_KEY = "12345" # Your smscoin.com account key
        
        * **Provider** model::
        
            from smscoin.models import Provider
        
        * Provides **CountryAdmin** to use at django admin interface
        
        * Provides django management command to update sms tariffs frmo the cmscoin.com service::
        
            python manage.py update_sms_tariff
        
        * help tag::
        
            {% smscoin_help %}
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
