Metadata-Version: 2.4
Name: Flask-CeleryExt
Version: 0.5.1
Summary: Flask-CeleryExt is a simple integration layer between Celery and Flask.
Project-URL: Homepage, https://github.com/inveniosoftware/flask-celeryext
Author-email: CERN <info@inveniosoftware.org>
License-Expression: BSD-3-Clause
License-File: AUTHORS.rst
License-File: LICENSE
Keywords: celery,flask
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.7
Requires-Dist: celery>=5.1.0
Requires-Dist: flask>=2.2.0
Provides-Extra: tests
Requires-Dist: check-manifest>=0.42; extra == 'tests'
Requires-Dist: coverage<6,>=5.3; extra == 'tests'
Requires-Dist: docker-services-cli>=0.4.0; extra == 'tests'
Requires-Dist: importlib-metadata<5; (python_version < '3.8') and extra == 'tests'
Requires-Dist: msgpack-python>=0.5.6; extra == 'tests'
Requires-Dist: pytest-black>=0.3.12; extra == 'tests'
Requires-Dist: pytest-cov>=3.0.0; extra == 'tests'
Requires-Dist: pytest-flask>=1.2.0; extra == 'tests'
Requires-Dist: pytest-isort>=3.0.0; extra == 'tests'
Requires-Dist: pytest-mock>=2.0.0; extra == 'tests'
Requires-Dist: pytest-pydocstyle>=2.2.0; extra == 'tests'
Requires-Dist: pytest<9,>=6; extra == 'tests'
Requires-Dist: redis>=4.1.4; extra == 'tests'
Requires-Dist: sphinx>=4.2.0; extra == 'tests'
Description-Content-Type: text/x-rst

=================
 Flask-CeleryExt
=================

.. image:: https://github.com/inveniosoftware/flask-celeryext/workflows/CI/badge.svg
        :target: https://github.com/inveniosoftware/flask-celeryext/actions

.. image:: https://img.shields.io/coveralls/inveniosoftware/flask-celeryext.svg
        :target: https://coveralls.io/r/inveniosoftware/flask-celeryext

.. image:: https://img.shields.io/github/tag/inveniosoftware/flask-celeryext.svg
        :target: https://github.com/inveniosoftware/flask-celeryext/releases

.. image:: https://img.shields.io/pypi/dm/flask-celeryext.svg
        :target: https://pypi.python.org/pypi/flask-celeryext

.. image:: https://img.shields.io/github/license/inveniosoftware/flask-celeryext.svg
        :target: https://github.com/inveniosoftware/flask-celeryext/blob/master/LICENSE

About
=====

Flask-CeleryExt is a simple integration layer between Celery and Flask.

Installation
============

Flask-CeleryExt is on PyPI so all you need is: ::

    pip install flask-celeryext

Documentation
=============

Documentation is readable at https://flask-celeryext.readthedocs.io/ or can be
build using Sphinx: ::

    pip install Sphinx
    python setup.py build_sphinx

Testing
=======

Running the test suite is as simple as: ::

    python setup.py test
