Metadata-Version: 2.1
Name: django-categories-i18n
Version: 1.1.1
Summary: Translatable Categories model
Home-page: https://github.com/django-parler/django-categories-i18n
Download-URL: https://github.com/django-parler/django-categories-i18n/zipball/master
Author: Diederik van der Boor
Author-email: opensource@edoburu.nl
License: Apache 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: Django (>=1.7)
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: django-mptt>=0.5.5
Requires-Dist: django-parler>=1.4

django-categories-i18n
======================

A simple categories model that supports translations.
Improvements are welcome!


Installation
============

First install the module, preferably in a virtual environment.
It can be installed from PyPI:

.. code-block:: bash

    pip install django-categories-i18n

Add ``categories_i18n`` to your ``INSTALLED_APPS``:

.. code-block:: python

    INSTALLED_APPS += (
        'categories_i18n',
    )


Usage
=====

* Link to the ``categories_i18n.models.Category`` model in your application.


Improving this package
======================

This module is designed to be usable for other projects too.
In case there is anything you didn't like about it,
or think it's not flexible enough, please let us know.
We'd love to improve it! Pull requests are welcome too. :-)
