Metadata-Version: 1.1
Name: django-data-sources-tracking
Version: 0.8.3
Summary: Django app for dealing with files/data sources and tracking them.
Home-page: https://github.com/genomics-geek/django-data-sources-tracking
Author: Michael A. Gonzalez
Author-email: genomics.geek.04.22@gmail.com
License: MIT
Description: =============================
        Django Data Tracking
        =============================
        
        .. image:: https://badge.fury.io/py/django-data-sources-tracking.svg
            :target: https://badge.fury.io/py/django-data-sources-tracking
        
        .. image:: https://travis-ci.org/chopdgd/django-data-sources-tracking.svg?branch=develop
            :target: https://travis-ci.org/chopdgd/django-data-sources-tracking
        
        .. image:: https://codecov.io/gh/chopdgd/django-data-sources-tracking/branch/develop/graph/badge.svg
            :target: https://codecov.io/gh/chopdgd/django-data-sources-tracking
        
        .. image:: https://pyup.io/repos/github/chopdgd/django-data-sources-tracking/shield.svg
            :target: https://pyup.io/repos/github/chopdgd/django-data-sources-tracking/
            :alt: Updates
        
        .. image:: https://pyup.io/repos/github/chopdgd/django-data-sources-tracking/python-3-shield.svg
            :target: https://pyup.io/repos/github/chopdgd/django-data-sources-tracking/
            :alt: Python 3
        
        
        Django app for dealing with files/data sources and tracking them. Useful for tracking public annotations or bfx pipeline outputs
        
        Documentation
        -------------
        
        The full documentation is at https://django-data-sources-tracking.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Django Data Tracking::
        
            pip install django-data-sources-tracking
        
        Add it to your `INSTALLED_APPS` (along with DRF and django-filters):
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'rest_framework',
                'django_filters',
                ...
                'data_sources_tracking',
                'user_activities',
                ...
            )
        
        Add Django Data Tracking's URL patterns:
        
        .. code-block:: python
        
            from data_sources_tracking import urls as data_sources_tracking_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(data_sources_tracking_urls, namespace='data_sources_tracking')),
                ...
            ]
        
        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 (2017-12-29)
        ++++++++++++++++++
        
        * First release on PyPI.
        * Initial models and REST API
        
        0.2.0 (2018-01-05)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.1.0...v0.2.0>`_
        
        * Improved REST API filters
        
        0.2.1 (2018-01-09)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.2.0...v0.2.1>`_
        
        * Updated packages and fixed issue with migrations
        
        0.2.2 (2018-01-12)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.2.1...v0.2.2>`_
        
        * Fixed route names for SimpleRouter
        
        0.3.0 (2018-02-09)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.2.2...v0.3.0>`_
        
        0.3.1 (2018-03-14)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.3.0...v0.3.1>`_
        
        * Updated requirements
        * Updated choices for file type choices to be more comprehensive
        
        0.4.0 (2018-03-23)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.3.1...v0.4.0>`_
        
        * Added property for File model for easy access to display type
        
        
        0.5.0 (2018-03-30)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.4.0...v0.5.0>`_
        
        * Added additional file type choices
        
        0.6.0 (2018-04-03)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.5.0...v0.6.0>`_
        
        * Added support for GraphQL
        
        0.7.0 (2018-04-07)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.6.0...v0.7.0>`_
        
        * Added support for GraphQL
        
        0.7.1 (2018-04-18)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.7.0...v0.7.1>`_
        
        * #27 - Fixed file type issues
        * Updated 3rd party libs
        
        0.7.2 (2018-05-16)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.7.1...v0.7.2>`_
        
        * Updated 3rd party libs
        * Updated setup.py to read from requirements.txt
        
        0.8.0 (2018-06-01)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.7.2...v0.8.0>`_
        
        * Removed support for GraphQL - useless here.  Applications using GraphQL can set up schema with models
        
        0.8.1 (2018-08-13)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.0...v0.8.1>`_
        
        * Updated 3rd party requirements. Some requirements had changed so it was causing failures
        
        0.8.2 (2018-10-29)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.1...v0.8.2>`_
        
        * Updated 3rd party requirements.
        
        0.8.3 (2019-01-08)
        ++++++++++++++++++
        
        `Full Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.2...v0.8.3>`_
        
        * Updated 3rd party requirements.
        
Keywords: django-data-sources-tracking
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
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
