Metadata-Version: 2.0
Name: Flask-CeleryExt
Version: 0.2.2
Summary: Flask-CeleryExt is a simple integration layer between Celery and Flask.
Home-page: https://github.com/inveniosoftware/flask-celeryext
Author: CERN
Author-email: info@inveniosoftware.org
License: BSD
Keywords: flask celery
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Development Status :: 5 - Production/Stable
Requires-Dist: Flask (>=0.10)
Requires-Dist: celery (>=3.1,<4.0)
Provides-Extra: all
Requires-Dist: Sphinx (>=1.4.2); extra == 'all'
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: coverage (>=4.0); extra == 'all'
Requires-Dist: isort (>=4.2.2); extra == 'all'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cov (>=1.8.0); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: pytest (>=2.8.0); extra == 'all'
Requires-Dist: Sphinx (>=1.4.2); extra == 'all'
Requires-Dist: check-manifest (>=0.25); extra == 'all'
Requires-Dist: coverage (>=4.0); extra == 'all'
Requires-Dist: isort (>=4.2.2); extra == 'all'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'all'
Requires-Dist: pytest-cache (>=1.0); extra == 'all'
Requires-Dist: pytest-cov (>=1.8.0); extra == 'all'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'all'
Requires-Dist: pytest (>=2.8.0); extra == 'all'
Provides-Extra: docs
Requires-Dist: Sphinx (>=1.4.2); extra == 'docs'
Provides-Extra: tests
Requires-Dist: check-manifest (>=0.25); extra == 'tests'
Requires-Dist: coverage (>=4.0); extra == 'tests'
Requires-Dist: isort (>=4.2.2); extra == 'tests'
Requires-Dist: pydocstyle (>=1.0.0); extra == 'tests'
Requires-Dist: pytest-cache (>=1.0); extra == 'tests'
Requires-Dist: pytest-cov (>=1.8.0); extra == 'tests'
Requires-Dist: pytest-pep8 (>=1.0.6); extra == 'tests'
Requires-Dist: pytest (>=2.8.0); extra == 'tests'

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

.. image:: https://img.shields.io/travis/inveniosoftware/flask-celeryext.svg
        :target: https://travis-ci.org/inveniosoftware/flask-celeryext

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


Changes
=======

Version 0.2.2 (released 2016-11-07)

- Forces celery version to v3.1-4.0 due to problem with 4.x.

Version 0.2.1 (released 2016-07-25)

Improved features

- Improves documentation structure and its automatic generation.

Version 0.2.0 (released 2016-02-02)

Incompatible changes

- Changes celery application creation to use the default current
  celery application instead creating a new celery application. This
  addresses an issue with tasks using the shared_task decorator and
  having Flask-CeleryExt initialized multiple times.

Version 0.1.0 (released 2015-08-17)

- Initial public release


