Metadata-Version: 1.0
Name: django-payonline
Version: 0.1.1
Summary: A Django application for integration with PayOnline System
Home-page: UNKNOWN
Author: Mike Yumatov
Author-email: mike@yumatov.org
License: ISC
Description: Django PayOnline
        ================
        
        Django PayOnline is an application for integration with PayOnline System.
        
        Installation
        ------------
        
        Install django-payonline with pip::
        
            pip install django-payonline
        
        Configuration
        -------------
        
        1. Add ``payonline`` app to ``INSTALLED_APPS``::
        
               INSTALLED_APPS = (
                   ...
                   'payonline',
               )
        
        2. Run ``syncdb`` command (with ``--migrate`` flag if you use South).
        
        3. Set app config in project's settings::
        
               PAYONLINE_CONFIG = {
                   'MERCHANT_ID': '...',
                   'PRIVATE_SECURITY_KEY': '...',
               }
        
        4. Add ``payonline.urls`` to project's urlconf::
        
               urlpatterns = patterns(
                   ...
                   url(r'^payonline/', include('payonline.urls')),
               )
        
        Contributing
        ------------
        
        Feel free to fork, send pull requests or report bugs and issues on github.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
