Metadata-Version: 1.1
Name: django-bKash
Version: 0.3
Summary: A simple Django app to conduct Web-based bKash payment.
Home-page: https://github.com/milu-buet/django-bKash
Author: Lutfar Rahman Milu
Author-email: milu.buet@gmail.com
License: Open Source License
Description: =====
        bKash_payment
        =====
        
        bKash_payment is a simple Django app to conduct Web-based bKash payment. 
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Installation:
        
        	pip install django-bKash
        
        2. Add "bKash_payment" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'bKash_payment',
            )
        
        3. Include the bKash_payment URLconf in your project urls.py like this::
        
            url(r'^bKash_payment/', include('bKash_payment.urls')),
        
        4. Run `python manage.py migrate` to create the bKash payment related table.
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/
           to get necessary access.
        
        6. Visit http://127.0.0.1:8000/bKash_payment/ to manage the bkash payment.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
