Metadata-Version: 2.0
Name: async-app
Version: 1.0.0b28
Summary: AsyncIO application as a hierarchy of services
Home-page: https://github.com/Kentzo/async_app/
Author: Ilya Kulakov
Author-email: kulakov.ilya@gmail.com
License: Apache 2
Description-Content-Type: UNKNOWN
Keywords: asyncio,app,framework
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.6
Requires-Dist: typeguard
Provides-Extra: ci
Requires-Dist: asynctest; extra == 'ci'
Requires-Dist: pytest; extra == 'ci'
Requires-Dist: pytest-cov; extra == 'ci'
Requires-Dist: codecov; extra == 'ci'
Requires-Dist: docutils; extra == 'ci'
Requires-Dist: flake8; extra == 'ci'
Provides-Extra: tests
Requires-Dist: asynctest; extra == 'tests'
Requires-Dist: pytest; extra == 'tests'
Requires-Dist: pytest-cov; extra == 'tests'

.. image:: https://travis-ci.org/Kentzo/async_app.svg?branch=master
    :target: https://travis-ci.org/Kentzo/async_app
    :alt: Travis
.. image:: https://ci.appveyor.com/api/projects/status/abqxn2vbk5k2styb/branch/master?svg=true
    :target: https://ci.appveyor.com/project/Kentzo/async-app
    :alt: AppVeyor
.. image:: https://codecov.io/gh/Kentzo/async_app/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/Kentzo/async_app
    :alt: Coverage
.. image:: https://pyup.io/repos/github/Kentzo/async_app/shield.svg
    :target: https://pyup.io/repos/github/Kentzo/async_app/
    :alt: Updates
.. image:: https://pyup.io/repos/github/Kentzo/async_app/python-3-shield.svg
    :target: https://pyup.io/repos/github/Kentzo/async_app/
    :alt: Python 3
.. image:: https://img.shields.io/pypi/v/async_app.svg
    :target: https://pypi.python.org/pypi/async_app
    :alt: PyPI

Key Features
============

- Ideal for heterogeneous asyncio applications
- `typing-friendly <https://docs.python.org/3/library/typing.html>`_ Config that enforces neither file format nor validation


Development
============

requirements.txt lists all dependencies needed to run tests and generate reports. See `.travis.yml <.travis.yml>`_ for commands.

CI tests each change against latest release of CPython 3 (Windows and macOS) as well as dev (macOS and Ubuntu) and nightly builds (Ubuntu).
PyPy will be added as soon as all necessary 3.6 features will be implemented.


