Metadata-Version: 2.1
Name: Pykka
Version: 2.0.3
Summary: Pykka is a Python implementation of the actor model
Home-page: https://www.pykka.org/
Author: Stein Magnus jodal
Author-email: stein.magnus@jodal.no
License: Apache License, Version 2.0
Project-URL: Source, https://github.com/jodal/pykka
Project-URL: Issues, https://github.com/jodal/pykka/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: lint
Provides-Extra: release
Provides-Extra: test
License-File: LICENSE

=====
Pykka
=====

Pykka is a Python implementation of the `actor model
<https://en.wikipedia.org/wiki/Actor_model>`_. The actor model introduces some
simple rules to control the sharing of state and cooperation between execution
units, which makes it easier to build concurrent applications.

For details and code examples, see the `Pykka documentation
<https://www.pykka.org/>`_.

Pykka is available from PyPI. To install it, run::

    pip install pykka

Pykka works with CPython 2.7 and 3.5+, as well as PyPy 2.7 and 3.5+.


License
=======

Pykka is copyright 2010-2020 Stein Magnus Jodal and contributors.
Pykka is licensed under the `Apache License, Version 2.0
<https://www.apache.org/licenses/LICENSE-2.0>`_.


Project resources
=================

- `Documentation <https://www.pykka.org/>`_
- `Source code <https://github.com/jodal/pykka>`_
- `Issue tracker <https://github.com/jodal/pykka/issues>`_


