Django App for storing Workflows and Tracking
Project description
=============================
django-genomix-workflows
=============================
.. image:: https://badge.fury.io/py/django-genomix-workflows.svg
:target: https://badge.fury.io/py/django-genomix-workflows
.. image:: https://travis-ci.org/fullrobot/django-genomix-workflows.svg?branch=develop
:target: https://travis-ci.org/fullrobot/django-genomix-workflows
.. image:: https://codecov.io/gh/fullrobot/django-genomix-workflows/branch/develop/graph/badge.svg
:target: https://codecov.io/gh/fullrobot/django-genomix-workflows
.. image:: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/shield.svg
:target: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/
:alt: Updates
.. image:: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/python-3-shield.svg
:target: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/
:alt: Python 3
Django App for storing Workflows and Tracking
Documentation
-------------
The full documentation is at https://django-genomix-workflows.readthedocs.io.
Quickstart
----------
Install django-genomix-workflows::
pip install django-genomix-workflows
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'genomix_workflows',
...
)
Add django-genomix-workflows's URL patterns:
.. code-block:: python
from genomix_workflows import urls as genomix_workflows_urls
urlpatterns = [
...
url(r'^', include(genomix_workflows_urls, namespace='genomix_workflows')),
...
]
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 (2018-01-12)
++++++++++++++++++
* First release on PyPI.
0.2.0 (2018-06-27)
++++++++++++++++++
* Changed models completely.
* Add graph interpretations for workflows.
* Add signal to automatically create task instances after workflow instance initiation.
* Add signals to update related task status after task updates.
* Add methods for single workflow/task instances to get current status, graph, JSON graph, and other useful helpers.
* Add managers for combined workflow and task methods.
* Add single and combined graph diagram, current status, and topographical sort to Django Admin.
* Complete the switch to Django 2.0
* Update requirements and dependencies.
0.2.1 (2018-07-02)
++++++++++++++++++
* Add raw id in Admin for workflow instance parent field
0.2.2 (2018-07-03)
++++++++++++++++++
* Add raw id in Admin for Task instance
0.2.3 (2018-07-06)
++++++++++++++++++
* Fix an issue with next and previous task instances
0.2.4 (2018-07-08)
++++++++++++++++++
* Improve combined Next and Previous calculations
0.2.5 (2018-07-09)
++++++++++++++++++
* Fix current state for a single workflow without running or pending tasks
0.2.6 (2018-08-07)
++++++++++++++++++
* Add Skip action feature
+ Increase coverage
0.2.7 (2018-08-13)
++++++++++++++++++
`Full Changelog <https://github.com/chopdgd/django-genomix-worfklows/compare/v0.2.6...v0.2.7>`_
* Updated 3rd party requirements. Some requirements had changed so it was causing failures
0.2.8 (2018-08-30)
++++++++++++++++++
* Add version to Tasks
0.2.9 (2018-10-29)
++++++++++++++++++
* Updated 3rd party requirements.
0.2.10 (2018-11-27)
++++++++++++++++++
* Updated 3rd party requirements.
django-genomix-workflows
=============================
.. image:: https://badge.fury.io/py/django-genomix-workflows.svg
:target: https://badge.fury.io/py/django-genomix-workflows
.. image:: https://travis-ci.org/fullrobot/django-genomix-workflows.svg?branch=develop
:target: https://travis-ci.org/fullrobot/django-genomix-workflows
.. image:: https://codecov.io/gh/fullrobot/django-genomix-workflows/branch/develop/graph/badge.svg
:target: https://codecov.io/gh/fullrobot/django-genomix-workflows
.. image:: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/shield.svg
:target: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/
:alt: Updates
.. image:: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/python-3-shield.svg
:target: https://pyup.io/repos/github/fullrobot/django-genomix-workflows/
:alt: Python 3
Django App for storing Workflows and Tracking
Documentation
-------------
The full documentation is at https://django-genomix-workflows.readthedocs.io.
Quickstart
----------
Install django-genomix-workflows::
pip install django-genomix-workflows
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'genomix_workflows',
...
)
Add django-genomix-workflows's URL patterns:
.. code-block:: python
from genomix_workflows import urls as genomix_workflows_urls
urlpatterns = [
...
url(r'^', include(genomix_workflows_urls, namespace='genomix_workflows')),
...
]
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 (2018-01-12)
++++++++++++++++++
* First release on PyPI.
0.2.0 (2018-06-27)
++++++++++++++++++
* Changed models completely.
* Add graph interpretations for workflows.
* Add signal to automatically create task instances after workflow instance initiation.
* Add signals to update related task status after task updates.
* Add methods for single workflow/task instances to get current status, graph, JSON graph, and other useful helpers.
* Add managers for combined workflow and task methods.
* Add single and combined graph diagram, current status, and topographical sort to Django Admin.
* Complete the switch to Django 2.0
* Update requirements and dependencies.
0.2.1 (2018-07-02)
++++++++++++++++++
* Add raw id in Admin for workflow instance parent field
0.2.2 (2018-07-03)
++++++++++++++++++
* Add raw id in Admin for Task instance
0.2.3 (2018-07-06)
++++++++++++++++++
* Fix an issue with next and previous task instances
0.2.4 (2018-07-08)
++++++++++++++++++
* Improve combined Next and Previous calculations
0.2.5 (2018-07-09)
++++++++++++++++++
* Fix current state for a single workflow without running or pending tasks
0.2.6 (2018-08-07)
++++++++++++++++++
* Add Skip action feature
+ Increase coverage
0.2.7 (2018-08-13)
++++++++++++++++++
`Full Changelog <https://github.com/chopdgd/django-genomix-worfklows/compare/v0.2.6...v0.2.7>`_
* Updated 3rd party requirements. Some requirements had changed so it was causing failures
0.2.8 (2018-08-30)
++++++++++++++++++
* Add version to Tasks
0.2.9 (2018-10-29)
++++++++++++++++++
* Updated 3rd party requirements.
0.2.10 (2018-11-27)
++++++++++++++++++
* Updated 3rd party requirements.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-genomix-workflows-0.2.10.tar.gz
.
File metadata
- Download URL: django-genomix-workflows-0.2.10.tar.gz
- Upload date:
- Size: 323.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57a2fa9061203597bd746fa04546924e5466b1d24710781b1dfd81abffa1fa16 |
|
MD5 | 1b7fb2d08ee37478a1c5651a546083be |
|
BLAKE2b-256 | f7bddfb052292542aa1e729c9dc614c6d88c7c96c66b2a845457c1b2db0eb91c |
Provenance
File details
Details for the file django_genomix_workflows-0.2.10-py2.py3-none-any.whl
.
File metadata
- Download URL: django_genomix_workflows-0.2.10-py2.py3-none-any.whl
- Upload date:
- Size: 331.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de6ce983b080084581fa433374a4dd1ff755b67745f58220e0aaed6f1cb8e763 |
|
MD5 | ca37aea67ea1c1832d61f3b34014a5ba |
|
BLAKE2b-256 | 83c00d63d7b4694e70fe20c613ee15fbc985d644d6522c33035be016afdd1c73 |