Metadata-Version: 2.1
Name: django-belt
Version: 1.2.0
Summary: Django app made to get together a set of utilities to use with Django projects.
Home-page: https://github.com/marcosgabarda/django-belt
License: UNKNOWN
Author: Marcos Gabarda
Author-email: hey@marcosgabarda.com
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
Requires-Dist: django
Requires-Dist: django-model-utils
Requires-Dist: djangorestframework
Requires-Dist: django-filter
Requires-Dist: belt; extra == "doc"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-django; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: factory_boy; extra == "test"
Provides-Extra: doc
Provides-Extra: test

===========
Django Belt
===========

Simple package with some utilities for Django.

.. image:: https://travis-ci.org/marcosgabarda/django-belt.svg?branch=master
    :target: https://travis-ci.org/marcosgabarda/django-belt

.. image:: https://coveralls.io/repos/github/marcosgabarda/django-belt/badge.svg?branch=master
    :target: https://coveralls.io/github/marcosgabarda/django-belt?branch=master


Quick start
-----------

**1** Install using pip::

    pip install django-belt

**2** Add "belt" to your INSTALLED_APPS settings like this::

    INSTALLED_APPS += ('belt',)


