Metadata-Version: 1.1
Name: satchmo-nogroth
Version: 0.1
Summary: A tiered weight shipping module for Satchmo that is Administrative Area (i.e. state/province) aware
Home-page: https://github.com/kcharvey/satchmo-nogroth
Author: Kevin Harvey
Author-email: kcharvey@gmail.com
License: BSD
Download-URL: https://github.com/kcharvey/satchmo-nogroth/archive/master.zip
Description: satchmo-nogroth [![Build Status](https://travis-ci.org/kcharvey/satchmo-nogroth.svg?branch=master)](https://travis-ci.org/kcharvey/satchmo-nogroth)
        ===============
        
        NoGroTH = No Ground To Hawaii - A tiered weight shipping module that is Administrative Area (i.e. state/province) aware
        
        Installation
        ---
        
         1. Install NoGroTH with Pip
        
                pip install satchmo-nogroth
        
         2. Add `nogroth` to your `INSTALLED_APPS`
        
                INSTALLED_APPS = (
                    ..
                    'nogroth',
                )
        
         3. Add `nogroth` to your `CUSTOM_SHIPPING_MODULES`
        
                SATCHMO_SETTINGS = {
                    …
                    'CUSTOM_SHIPPING_MODULES': ['nogroth'],
                }
        
         4. Add the NoGroTH fields to the database
         
                python manage.py migrate nogroth
        
         5. Activate 'NoGroTH' as a shipping module in `livesettings`
         
         6. If necessary, copy over existing Tiered Weight Shipping rules to NoGroTH. Make sure `shipping.modules.tieredweight` is in your installed apps and run
        
                python manage.py satchmo_nogroth_copy_tiers
        
          You can remove `shipping.modules.tieredweight` from your settings file after this command successfully runs.
        
        Dependencies
        ---
        
        Assuming you've got a working Satchmo site, there are no other dependencies besides `satchmo` and it's dependencies.
        
        Development
        ---
        
        Pull requests welcome! Just fork the repo.
        
        ### Running the tests
        
        You'll need to have a working Satchmo project and complete installation steps 1-4. Then run
        
            python manage.py tests nogroth
        
Keywords: django,satchmo,shipping,tiered weight,by state
Platform: Platform independant
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Other Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
