Metadata-Version: 2.1
Name: clink
Version: 0.34.0
Summary: Component Link.
Home-page: https://bitbucket.csiro.au/projects/ASKAPSDP/repos/clink/
Author: Matt Austin
Author-email: matt.austin@csiro.au
License: GPL-2.0
Project-URL: Documentation, https://askapsdp.gitlab.io/clink/
Project-URL: Changelog, https://askapsdp.gitlab.io/clink/history.html
Project-URL: Issues, https://jira.csiro.au/projects/ASKAPSDP/issues
Project-URL: Source, https://bitbucket.csiro.au/projects/ASKAPSDP/repos/clink/browse
Keywords: clink,amqp,cloudevent,messaging,producer,consumer,queue,event
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Typing :: Typed
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: kombu (>=5)
Requires-Dist: marshmallow (>=3)
Requires-Dist: rich (>=10)
Requires-Dist: sentry-sdk (>=1)
Requires-Dist: setuptools (>8.3)
Requires-Dist: pyyaml (>=5)
Requires-Dist: typing-extensions (>=4.1.1) ; python_version < "3.10"
Requires-Dist: click (<8,>=7) ; python_version < "3.6.5"
Requires-Dist: dataclasses ; python_version < "3.7"
Requires-Dist: backports.zoneinfo ; python_version < "3.9"
Requires-Dist: click (>=7) ; python_version >= "3.6.5"
Requires-Dist: importlib-metadata (<5.0.0) ; python_version >= "3.7" and python_version < "3.8"
Provides-Extra: docs
Requires-Dist: sphinx (~=5.3) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme (~=1.1) ; extra == 'docs'
Provides-Extra: redis
Requires-Dist: kombu[redis] (<6,>=5) ; extra == 'redis'
Provides-Extra: tests
Requires-Dist: coverage (~=6.2) ; extra == 'tests'
Requires-Dist: freezegun (~=1.2) ; extra == 'tests'
Requires-Dist: unittest-xml-reporting (~=3.1) ; extra == 'tests'
Requires-Dist: asynctest (==0.13.0) ; (python_version < "3.8") and extra == 'tests'
Provides-Extra: types
Requires-Dist: mypy (==0.971) ; extra == 'types'
Requires-Dist: types-attrs (==19.1.0) ; extra == 'types'
Requires-Dist: types-certifi (==2021.10.8.3) ; extra == 'types'
Requires-Dist: types-backports (==0.1.3) ; extra == 'types'
Requires-Dist: types-dataclasses (==0.6.6) ; extra == 'types'
Requires-Dist: types-click (==7.1.8) ; extra == 'types'
Requires-Dist: types-freezegun (==1.1.10) ; extra == 'types'
Requires-Dist: types-pyyaml (==6.0.10) ; extra == 'types'
Requires-Dist: types-setuptools (==57.4.18) ; extra == 'types'
Provides-Extra: tzdata
Requires-Dist: tzdata ; extra == 'tzdata'

# Component Link

[![pipeline status](https://gitlab.com/ASKAPSDP/clink/badges/develop/pipeline.svg)](https://gitlab.com/ASKAPSDP/clink/commits/develop) [![coverage](https://gitlab.com/ASKAPSDP/clink/badges/develop/coverage.svg)](https://askapsdp.gitlab.io/clink/coverage/)


Documentation: <https://askapsdp.gitlab.io/clink/>


CLINK is a Python library designed to make it easy to build
[CloudEvent](https://cloudevents.io/) consumers and producers (CLINK
participants). It uses [Kombu](https://kombu.readthedocs.io/) and
[AMQP](https://amqp.org/) for messaging.


CLINK supports Python 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11.


## Installation

Install from the
[Python Package Index, (pypi)](https://pypi.org/project/clink/), using
[pip](https://pip.pypa.io/en/stable/):

```bash
python -m pip install clink
```


