Metadata-Version: 1.1
Name: DjangoMpesa
Version: 1.1
Summary: A simple Django app for integrating mpesa stk push payment to your django site.
Home-page: http://www.techtenant.co.ke/
Author: Oronz
Author-email: brianoroni6@gmail.com
License: BSD License
Description: ============
        DjangoMpesa
        ============
        
        Django mpesa is a simple re-usable Django application for mpesa STK push payment, that can be easily intergrated to any django powered site.
        
        Quick start
        -----------
        
        1. Add "mpesaApp" to INSTALLED_APPS:
        
          INSTALLED_APPS = {
        
            'mpesaApp'
        
          }
        
        2. Include the mpesaApp URLconf in urls.py:
            path('payment/', include('mpesaApp.urls')),
        
        3. Run `python manage.py migrate` to create DJango mpesa's models.
        
        4. Run the development server and access http://127.0.0.1:8000/admin/ to
            manage setup and add all your payment details.
        
        5. Access http://127.0.0.1:8000/payment/ to view a json result of payment.
Keywords: MPESA,Django,Djangompesa
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
