Metadata-Version: 2.1
Name: repype
Version: 1.0.0b2
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.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: dill >=0.3.2
Requires-Dist: frozendict >=2.4
Requires-Dist: mergedeep >=1.3.4
Requires-Dist: pyyaml >=6.0.1
Requires-Dist: watchdog >=4.0.2

**Installation:**

.. code::

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

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

**Examples:** https://github.com/kostrykin/repype/tree/master/examples

**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.
