Metadata-Version: 2.0
Name: drf-coupons
Version: 1.0
Summary: A django-rest-framework application that provides many varieties of coupons
Home-page: https://github.com/pstrinkle/drf-coupons
Author: Patrick Trinkle
Author-email: patrick@1shoe.net
License: Apache 2.0
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: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django-filter
Requires-Dist: djangorestframework

DRF Coupons
-----------

A django-rest-framework application that provides many varieties of coupons

Detailed documentation is in the README.md file.

Quick start
-----------

1. Add "coupons" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'coupons',
    ]

2. Include the coupons URLconf in your project urls.py like this::

    url(r'^', include('coupons.urls')),

3. Run ``python manage.py migrate`` to create the polls models.



