Metadata-Version: 2.0
Name: resolwe-runtime-utils
Version: 0.2.0
Summary: Runtime utilities for Resolwe dataflow engine
Home-page: https://github.com/genialis/resolwe-runtime-utils
Author: The resolwe-runtime-utils authors
Author-email: dev-team@genialis.com
License: Apache License (2.0)
Keywords: resolwe runtime utilities library
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: docs
Requires-Dist: Sphinx; extra == 'docs'
Provides-Extra: package
Requires-Dist: twine; extra == 'package'
Requires-Dist: wheel; extra == 'package'
Provides-Extra: test
Requires-Dist: check-manifest; extra == 'test'
Requires-Dist: readme; extra == 'test'

=========================
Resolwe runtime utilities
=========================

.. image:: https://readthedocs.org/projects/resolwe-runtime-utils/badge/?version=latest
    :target: http://resolwe-runtime-utils.readthedocs.org/
    :alt: Latest Docs

A project that provides convenience utilities for writing processes for the
Resolwe_ dataflow engine.

You can find more information in the documentation_.

.. _Resolwe: https://github.com/genialis/resolwe
.. _documentation: http://resolwe-runtime-utils.readthedocs.org/

Getting started
---------------

Install resolwe-runtime-utils from PyPI_::

    pip install resolwe-runtime-utils

Use them in your Python Resolwe process:

.. code-block:: python

    from resolwe_runtime_utils import info, save_file

    info('Some info')
    save_file('etc', 'foo.py')

Or use them in your Bash Resolwe process::

    re-info "Some info"
    re-save-file "etc" "foo.py"

.. _PyPI: https://pypi.python.org/pypi/resolwe-runtime-utils


