Metadata-Version: 1.1
Name: django-redmine-models
Version: 0.2
Summary: Django models for the Redmine database.
Home-page: https://github.com/zvin/django-redmine-models
Author: Alexis Svinartchouk
Author-email: UNKNOWN
License: BSD
Description: =====================
        django-redmine-models
        =====================
        
        .. image:: https://img.shields.io/pypi/v/django-redmine-models.svg
           :target: https://pypi.python.org/pypi/django-redmine-models
           :alt: PyPI Version
        
        
        Using django-redmine-models
        ===========================
        
        Define the database parameters as usual in the ``DATABASES`` setting then add::
        
            REDMINE_DATABASE = "the-redmine-db-key-in-DATABASES"
        
        and define (or add) the database router::
        
            DATABASE_ROUTERS = ["redmine_models.routers.DatabaseRouter"]
        
        Then use the models::
        
            from redmine_models.models import Project
            print Project.objects.all()
            # etc...
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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 :: Utilities
Classifier: Framework :: Django
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Groupware
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Requires: django (>=1.7)
