Metadata-Version: 2.2
Name: django-oscar-eurotaxes
Version: 0.2.1
Summary: Package to manage taxes with django-oscar if the company must accomplish the European Laws of Taxes
Home-page: https://bitbucket.org/abalt/django-oscar-eurotaxes
Download-URL: https://bitbucket.org/abalt/django-oscar-eurotaxes/get/0.2.1.zip
Author: Abalt
Author-email: admin@abalt.org
License: Copyright (c) 2011, Tangent Communications PLC and individual contributors.
        All rights reserved.
        
        Redistribution and use in source and binary forms, with or without modification,
        are permitted provided that the following conditions are met:
        
            1. Redistributions of source code must retain the above copyright notice,
               this list of conditions and the following disclaimer.
        
            2. Redistributions in binary form must reproduce the above copyright
               notice, this list of conditions and the following disclaimer in the
               documentation and/or other materials provided with the distribution.
        
            3. Neither the name of Tangent Communications PLC nor the names of its contributors
        	   may be used to endorse or promote products derived from this software without
               specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
        ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
        WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
        ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
        ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
        (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Keywords: Taxes,Oscar
Classifier: Development Status :: 4 - Beta
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 :: Other/Nonlisted Topic
License-File: LICENSE
Provides-Extra: oscar
Requires-Dist: django-oscar>=0.6; extra == "oscar"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: provides-extra
Dynamic: summary

==============================
Taxes package for django-oscar
==============================

This package manage taxes on django-oscar_. The package is structured so that it can be used only with Oscar.

.. _django-oscar: https://github.com/tangentlabs/django-oscar

* `Full documentation`_

.. _`Full documentation`: http://django-oscar-paypal.readthedocs.org/en/latest/

License
-------

The package is released under the New BSD license.

Settings
--------

You must add `'eurotaxes.partner'` to `INSTALLED_APPS`
(replacing the equivalent Oscar app). This can be achieved using
Oscar's get_core_apps function - e.g.:

.. code-block:: python

    # settings.py
    ...
    INSTALLED_APPS = [
        'django.contrib.auth',
        ...
    ]
    from oscar import get_core_apps
    INSTALLED_APPS = INSTALLED_APPS + get_core_apps(
        ['eurotaxes.catalogue', 'eurotaxes.dashboard', 'eurotaxes.dashboard.catalogue', 'eurotaxes.partner']
    )

Commands
--------

You can use the command `oscar_populate_taxes` to add all the European Taxes.
