Metadata-Version: 2.0
Name: django-data-sources-tracking
Version: 0.4.0
Summary: Django app for dealing with files/data sources and tracking them. Useful for tracking public annotations or bfx pipeline outputs
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-Content-Type: UNKNOWN
Keywords: django-data-sources-tracking
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: djangorestframework (==3.7.7)
Requires-Dist: django-filter (==1.1.0)
Requires-Dist: django-genomix (==0.5.0)
Requires-Dist: django-model-utils (==3.1.1)
Requires-Dist: django-user-activities (==0.4.1)

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


