Metadata-Version: 1.1
Name: dj-input-flow
Version: 0.1.5
Summary: Django app to handle data flow
Home-page: https://github.com/kverdecia/dj-input-flow
Author: Karel Antonio Verdecia Ortiz
Author-email: kverdecia@gmail.com
License: MIT
Description: =============================
        dj-input-flow
        =============================
        
        .. image:: https://badge.fury.io/py/dj-input-flow.svg
            :target: https://badge.fury.io/py/dj-input-flow
        
        .. image:: https://travis-ci.org/kverdecia/dj-input-flow.svg?branch=master
            :target: https://travis-ci.org/kverdecia/dj-input-flow
        
        .. image:: https://codecov.io/gh/kverdecia/dj-input-flow/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/kverdecia/dj-input-flow
        
        Django app to handle data flow
        
        Documentation
        -------------
        
        The full documentation is at https://dj-input-flow.readthedocs.io.
        
        Quickstart
        ----------
        
        Install dj-input-flow::
        
            pip install dj-input-flow
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'adminsortable',
                'inputflow',
                ...
            )
        
        Add dj-input-flow's URL patterns:
        
        .. code-block:: python
        
            urlpatterns = [
                ...
                path('inputflow/', include('inputflow.urls', 'inputflow')),
                ...
            ]
        
        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 (2019-10-10)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: dj-input-flow
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
