Metadata-Version: 1.1
Name: django-senex-shop
Version: 0.1.4
Summary: Senex Shop
Home-page: http://www.github.com/endthestart/django-senex-shop
Author: Michael Anderson
Author-email: andermic@gmail.com
License: BSD
Description: Senex Shop
        
        1. Add the following applications to your settings.
        
            'senex_shop',
            'senex_shop.cart',
            'senex_shop.checkout',
            'senex_shop.contact',
            'senex_shop.core',
            'senex_shop.custom',
            'senex_shop.shipping',
        
        2. Add the following URLs to your urls.py:
        
                               url(r'^contact/$', 'senex.views.contact', name='contact'),
                               url(r'^contact/thanks/$', 'senex.views.contact_thanks', name='contact_thanks'),
                               url(r'^checkout/', include('senex_shop.checkout.urls')),
                               url(r'^cart/', include('senex_shop.cart.urls')),
                               url(r'^shop/', include('senex_shop.urls')),
        
        
        
Keywords: django e-commerce online-shop
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
