Metadata-Version: 2.0
Name: invenio-workflows
Version: 0.1.2
Summary: Invenio module for running determined set of tasks.
Home-page: https://github.com/inveniosoftware/invenio-workflows
Author: CERN
Author-email: info@invenio-software.org
License: GPLv2
Keywords: invenio workflows
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Development Status :: 1 - Planning
Requires-Dist: Flask (>=0.10.1)
Requires-Dist: six (>=1.7.2)
Requires-Dist: workflow (>=1.2.0,<2.0.0)
Requires-Dist: invenio-base (>=0.3.0)
Requires-Dist: invenio-celery (>=0.1.0)
Requires-Dist: invenio-ext (>=0.1.0)
Requires-Dist: invenio-upgrader (>=0.1.0)
Requires-Dist: invenio-utils (>=0.1.0)
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.3); extra == 'docs'
Requires-Dist: sphinx-rtd-theme (>=0.1.7); extra == 'docs'
Provides-Extra: tests
Requires-Dist: unittest2 (>=1.1.0); extra == 'tests'
Requires-Dist: Flask-Testing (>=0.4.1); extra == 'tests'
Requires-Dist: pytest (>=2.8.0); extra == 'tests'
Requires-Dist: pytest-cov (>=2.1.0); extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'tests'
Requires-Dist: coverage (>=4.0.0); extra == 'tests'
Requires-Dist: invenio-testing (>=0.1.0); extra == 'tests'

..
    This file is part of Invenio.
    Copyright (C) 2015 CERN.

    Invenio is free software; you can redistribute it
    and/or modify it under the terms of the GNU General Public License as
    published by the Free Software Foundation; either version 2 of the
    License, or (at your option) any later version.

    Invenio is distributed in the hope that it will be
    useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Invenio; if not, write to the
    Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
    MA 02111-1307, USA.

    In applying this license, CERN does not
    waive the privileges and immunities granted to it by virtue of its status
    as an Intergovernmental Organization or submit itself to any jurisdiction.

===================
 Invenio-Workflows
===================

.. image:: https://img.shields.io/travis/inveniosoftware/invenio-workflows.svg
        :target: https://travis-ci.org/inveniosoftware/invenio-workflows

.. image:: https://img.shields.io/coveralls/inveniosoftware/invenio-workflows.svg
        :target: https://coveralls.io/r/inveniosoftware/invenio-workflows

.. image:: https://img.shields.io/github/tag/inveniosoftware/invenio-workflows.svg
        :target: https://github.com/inveniosoftware/invenio-workflows/releases

.. image:: https://img.shields.io/pypi/dm/invenio-workflows.svg
        :target: https://pypi.python.org/pypi/invenio-workflows

.. image:: https://img.shields.io/github/license/inveniosoftware/invenio-workflows.svg
        :target: https://github.com/inveniosoftware/invenio-workflows/blob/master/LICENSE


Invenio module for running determined set of tasks.

*This is an experimental development preview release.*

* Free software: GPLv2 license
* Documentation: https://invenio-workflows.readthedocs.org.


..
    This file is part of Invenio.
    Copyright (C) 2015 CERN.

    Invenio is free software; you can redistribute it
    and/or modify it under the terms of the GNU General Public License as
    published by the Free Software Foundation; either version 2 of the
    License, or (at your option) any later version.

    Invenio is distributed in the hope that it will be
    useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Invenio; if not, write to the
    Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
    MA 02111-1307, USA.

    In applying this license, CERN does not
    waive the privileges and immunities granted to it by virtue of its status
    as an Intergovernmental Organization or submit itself to any jurisdiction.

Changes
=======

Version 0.1.2 (released 2015-10-02)
-----------------------------------

Incompatible changes
~~~~~~~~~~~~~~~~~~~~

- Removes legacy sample workflows, tasks and definitions. (#14)

New features
~~~~~~~~~~~~

- Adds a simplistic manager to easily start workflows with data from
  files.

Bug fixes
~~~~~~~~~

- Fixes some PEP8 issues across the codebase. (#2)
- Upgrades the minimum version of invenio-base to 0.3.0.
- Removes dependencies to invenio.testsuite and replaces them with
  invenio_testing.
- Removes dependencies to invenio.celery and replaces them with
  invenio_celery.
- Removes dependencies to invenio.utils and replaces them with
  invenio_utils.
- Removes dependencies to invenio.ext and replaces them with
  invenio_ext.
- Removes calls to PluginManager consider_setuptools_entrypoints()
  removed in PyTest 2.8.0.
- Adds missing `invenio_base` dependency.
- Safely stores only strings in the task_history, avoiding potential
  serialization issues.

Notes
~~~~~

- Temporarily adds PEP8 ignore of E501 to some files in CI to be less
  disruptive to upcoming refactoring of this module.

Version 0.1.1 (released 2015-08-25)
-----------------------------------

- Adds missing 'invenio-upgrader' dependency and ammends imports.

Version 0.1.0 (released 2015-08-13)
-----------------------------------

- Initial public release.


