Metadata-Version: 2.1
Name: repype
Version: 1.0.0a4
Summary: Reproducible batch processing using pipelines for scientific computing.
Home-page: https://github.com/kostrykin/repype
Author: Leonid Kostrykin
Author-email: leonid.kostrykin@bioquant.uni-heidelberg.de
License: MIT
Requires-Python: >3.8
Description-Content-Type: text/x-rst
License-File: LICENSE

| ⚠️ **This branch is currently not stable.** ⚠️
| See https://github.com/kostrykin/repype/releases/tag/v0.1.0 for the last stable version.

----

**Installation:**

.. code::

    git clone git@github.com:kostrykin/repype.git
    cd repype && python setup.py install

**Documentation:** https://repype.readthedocs.io

**Development instructions:**

- To run the test suite, first install the testing dependencies::

      pip install -r tests/requirements.txt
      python -m unittest

- Instead of using ``python -m unittest``, use coverage.py to also produce a test coverage report::

      coverage run -m unittest && python -m coverage html

  This requires `coverage.py <https://coverage.readthedocs.io/en/7.4.0/#quick-start>`_ to be installed additionally, like ``pip install coverage``.

- To build the documentation locally::

      pip install -r docs/requirements.txt
      cd docs
      make html

  You can then open ``build/html/index.html`` to view the documentation.
