Metadata-Version: 1.1
Name: dj-stripe
Version: 0.1.2
Summary: A Django app for Stripe
Home-page: https://github.com/pydanny/dj-stripe
Author: Daniel Greenfeld
Author-email: pydanny@gmail.com
License: BSD
Description: =============================
        dj-stripe
        =============================
        
        .. image:: https://badge.fury.io/py/dj-stripe.png
            :target: http://badge.fury.io/py/dj-stripe
            
        .. image:: https://travis-ci.org/pydanny/dj-stripe.png?branch=master
                :target: https://travis-ci.org/pydanny/dj-stripe
        
        .. image:: https://pypip.in/d/dj-stripe/badge.png
                :target: https://crate.io/packages/dj-stripe?version=latest
        
        
        A Django app for Stripe
        
        Documentation
        -------------
        
        The full documentation is at http://dj-stripe.rtfd.org.
        
        Quickstart
        ----------
        
        Install dj-stripe::
        
            pip install dj-stripe
        
        settings.py::
        
        	# settings.py
        	INSTALLED_APPS +=(
        	    "djstripe",
        	)
        
        urls.py::
        
        	url(r'^stripe/', include('djstripe.urls', namespace="djstripe")),
        	
        Run the commands::
        
        	python manage.py syncdb
        	
        	python manage.py djstripe_init_customers
        	
        	python manage.py djstripe_init_plans
        
        Running Tests
        --------------
        
        ::
        
            pip install -r requirements_text.txt
            python runtests.py
        
        Features
        --------
        
        * TODO
        
        
        
        
        
        History
        -------
        
        0.1.2 (2013-08-6)
        ++++++++++++++++++
        
        * Admin working
        * Better publish statement
        * Fix dependencies
        
        0.1.1 (2013-08-6)
        ++++++++++++++++++
        
        * Ported internals from django-stripe-payments
        * Began writing the views
        * Travis-CI
        * All tests passing on Python 2.7 and 3.3
        * All tests passing on Django 1.4 and 1.5
        * Began model cleanup
        * Better form
        * Provide better response from management commands
        
        0.1.0 (2013-08-5)
        ++++++++++++++++++
        
        * First release on PyPI.
Keywords: stripe django
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
