Metadata-Version: 2.1
Name: aiozyre
Version: 1.0.4
Summary: asyncio-friendly Python bindings for Zyre
Home-page: UNKNOWN
Author: Elijah Shaw-Rutschman
Author-email: elijahr+aiozyre@gmail.com
License: UNKNOWN
Description: ![build_status](https://travis-ci.org/elijahr/aiozyre.svg?branch=master)
        
        # aiozyre
        asyncio-friendly Python bindings for [Zyre](https://github.com/zeromq/zyre), an open-source framework for proximity-based peer-to-peer applications.
        
        ## Installing
        
        The package is in pypi, you can install it with:
        ```
        pip install aiozyre
        ```
        
        CI tests run on CPython 3.6.4, 3.7.0, and 3.8.0 on Linux and OS X.
        CPython 3.6.3 and lower are not supported due to this bug: https://bugs.python.org/issue20891.
        
        ## Usage
        
        See `tests/__init__.py` for examples.
        
        ## Contributing
        
        Pull requests are welcome. You should be able to develop with something like:
        
        ```
        git clone https://github.com/elijahr/aiozyre.git
        cd aiozyre
        pip install pipenv
        pipenv install --three --dev
        alias prp=pipenv run python
        prp setup.py develop --uninstall; prp setup.py clean; prp setup.py build; prp setup.py develop; prp tests/__init__.py
        ```
        
        Anytime you make changes to the .pyx or .pxd files, just re-run:
        ```
        prp setup.py develop --uninstall; prp setup.py clean; prp setup.py build; prp setup.py develop; prp tests/__init__.py
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Networking
Classifier: Framework :: AsyncIO
Description-Content-Type: text/markdown
