Metadata-Version: 2.1
Name: parq
Version: 0.2.0
Summary: A multi-process job queue
Home-page: https://bitbucket.org/robmoss/job-queue/
Author: Rob Moss
Author-email: rgmoss@unimelb.edu.au
License: BSD 3-Clause License
Project-URL: Documentation, https://parq.readthedocs.io/en/latest/
Project-URL: Changelog, https://parq.readthedocs.io/en/latest/changelog.html
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE

A multi-process job queue
=========================

|version| |docs| |tests| |coverage|

Description
-----------

This package implements a queue that distributes jobs over multiple processes.

License
-------

The code is distributed under the terms of the `BSD 3-Clause license <https://opensource.org/licenses/BSD-3-Clause>`_ (see
``LICENSE``), and the documentation is distributed under the terms of the
`Creative Commons BY-SA 4.0 license
<http://creativecommons.org/licenses/by-sa/4.0/>`_.

Installation
------------

To install the latest release::

    pip install parq

To install the latest development version, clone this repository and run::

    pip install .

.. |version| image:: https://badge.fury.io/py/parq.svg
   :alt: Latest version
   :target: https://pypi.org/project/parq/

.. |docs| image::  https://readthedocs.org/projects/parq/badge/
   :alt: Documentation
   :target: https://parq.readthedocs.io/

.. |tests| image:: https://gitlab.unimelb.edu.au/rgmoss/job-queue/badges/master/pipeline.svg
   :alt: Test cases
   :target: https://gitlab.unimelb.edu.au/rgmoss/job-queue

.. |coverage| image:: https://gitlab.unimelb.edu.au/rgmoss/job-queue/badges/master/coverage.svg
   :alt: Test coverage
   :target: https://gitlab.unimelb.edu.au/rgmoss/job-queue
