Metadata-Version: 1.0
Name: django-alipay
Version: 0.1
Summary: alipay api for django
Home-page: https://github.com/liuyug/django-alipay
Author: Yugang LIU
Author-email: liuyug@gmail.com
License: GPLv3 License
Description: =======
        alipay
        =======
        
        alipay api for django
        
        Quick start
        -----------
        
        1. Add "alipay" to your INSTALLED_APPS setting like this::
        
           INSTALLED_APPS = (
           ...
           'alipay',
           )
        
        2. Include the alipay URLconf in your project urls.py like this::
        
           url(r'^alipay/ptn/', include('alipay.create_partner_trade_by_buyer.ptn.urls')),
        
        3. Run `python manage.py syncdb` to create the alipay models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/ to create a poll (you'll need the Admin app enabled).
        
        5. Visit http://127.0.0.1:8000/alipay/ to participate in the poll.
        
        
        
Platform: noarch
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GPLv3 License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
