Metadata-Version: 2.0
Name: django-handy
Version: 0.1.1
Summary: Set of handy helpers for developing Django web applications.
Home-page: https://github.com/tatarinov1997/django-handy
Author: Alexandr Tatarinov
Author-email: tatarinov1997@gmail.com
License: MIT
Keywords: django-handy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Requires-Dist: Django (>=1.11)
Requires-Dist: djangorestframework (>=3.8)
Requires-Dist: django-manager-utils

=============================
Django Handy
=============================

.. image:: https://badge.fury.io/py/django-handy.svg
    :target: https://badge.fury.io/py/django-handy

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

.. image:: https://codecov.io/gh/tatarinov1997/django-handy/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/tatarinov1997/django-handy

Set of handy helpers for developing Django web applications.

Documentation
-------------

The full documentation is at https://django-handy.readthedocs.io.

Quickstart
----------

Install Django Handy::

    pip install django-handy

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'django_handy',
        ...
    )

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.0 (2018-09-09)
++++++++++++++++++

* First release on PyPI.


