Metadata-Version: 2.1
Name: django-ship
Version: 0.2.6
Summary: An app to use Post Office services in e-commerce built with Django.
Home-page: https://williamlagos.github.io/
Author: William Oliveira de Lagos
Author-email: william@efforia.com.br
License: LGPLv3 License
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 :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/x-rst

========
Shipping
========

Shipping is an app to use Post Office services for e-commerces built with Django.

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

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

    INSTALLED_APPS = (
        ...
        'shipping',
    )

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

    url(r'^shipping/', include('shipping.urls')),

3. Run `python manage.py syncdb` to create the shipping models.

4. Visit http://127.0.0.1:8000/ to view a sample with a shipping service

