Metadata-Version: 2.1
Name: django-data-sources-tracking
Version: 0.9.0
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: GonzalezMA@email.chop.edu
License: MIT
Keywords: django-data-sources-tracking
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
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
Requires-Dist: djangorestframework (==3.10.3)
Requires-Dist: django-filter (==2.2.0)
Requires-Dist: django-genomix (==0.6.10)
Requires-Dist: django-model-utils (==3.2.0)
Requires-Dist: django-user-activities (==0.5.11)

=============================
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)
++++++++++++++++++

`0.2.0 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)
++++++++++++++++++

`0.2.1 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)
++++++++++++++++++

`0.2.2 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)
++++++++++++++++++

`0.3.0 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.2.2...v0.3.0>`_

0.3.1 (2018-03-14)
++++++++++++++++++

`0.3.1 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)
++++++++++++++++++

`0.4.0 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)
++++++++++++++++++

`0.5.0 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)
++++++++++++++++++

`0.6.0 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)
++++++++++++++++++

`0.7.0 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)
++++++++++++++++++

`0.7.1 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)
++++++++++++++++++

`0.7.2 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)
++++++++++++++++++

`0.8.0 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)
++++++++++++++++++

`0.8.1 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)
++++++++++++++++++

`0.8.2 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)
++++++++++++++++++

`0.8.3 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.2...v0.8.3>`_

* Updated 3rd party requirements.

0.8.4 (2019-02-08)
++++++++++++++++++

`0.8.4 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.3...v0.8.4>`_

* Updated 3rd party requirements.
* Refactored tests

0.8.5 (2019-04-10)
++++++++++++++++++

`0.8.5 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.4...v0.8.5>`_

* Updated 3rd party requirements.
* Updated travis to use xenial distribution. Django 2.1 dropped support for SQLite < 3.8.3

0.8.6 (2019-05-31)
++++++++++++++++++

`0.8.6 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.5...v0.8.6>`_

* Updated package to use latest cookiecutter template

0.8.7 (2019-07-26)
++++++++++++++++++

`0.8.7 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.6...v0.8.7>`_

* Updated 3rd party requirements.

0.8.8 (2019-08-09)
++++++++++++++++++

`0.8.8 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.7...v0.8.8>`_

* Updated 3rd party requirements.
* Added support for excel file types

0.9.0 (2019-09-09)
++++++++++++++++++

`0.9.0 Changelog <https://github.com/chopdgd/django-data-sources-tracking/compare/v0.8.8...v0.9.0>`_

* Updated 3rd party requirements.
* Added FileField and hash (to detect duplicates)


