Metadata-Version: 1.1
Name: huey-drf-api
Version: 0.2.0
Summary: A DRF API for Huey
Home-page: https://github.com/eyemyth/huey-drf-api
Author: Jay Thompson
Author-email: jay_thompson@wgbh.org
License: MIT
Description: =============================
        Huey DRF API
        =============================
        
        .. image:: https://badge.fury.io/py/huey-drf-api.svg
            :target: https://badge.fury.io/py/huey-drf-api
        
        .. image:: https://travis-ci.org/eyemyth/huey-drf-api.svg?branch=master
            :target: https://travis-ci.org/eyemyth/huey-drf-api
        
        .. image:: https://codecov.io/gh/eyemyth/huey-drf-api/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/eyemyth/huey-drf-api
        
        A DRF API for Huey
        
        Documentation
        -------------
        
        The full documentation is at https://huey-drf-api.readthedocs.io. (Except it isn't, not yet.)
        
        Quickstart
        ----------
        
        Install Huey DRF API::
        
            pip install huey-drf-api
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'hueydrfapi',
                ...
            )
        
        Add Huey DRF API's URL patterns:
        
        .. code-block:: python
        
            urlpatterns = [
                ...
                path('', include('hueydrfapi.urls', namespace='hueydrfapi')),
                ...
            ]
        
        Features
        --------
        
        * TODO
        
        Running Tests
        -------------
        
        * TODO: write 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 (2019-04-03)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: huey-drf-api
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
