Add async pubsub client.

This comes from infrastructure-qbot/pubsub.py #5d653be
1 file changed
tree: ccdd5d6c09caff9b252bd5fc930da648be6e9bd4
  1. asfpy/
  2. .gitignore
  3. README.md
  4. setup.py
  5. test_ldap.py
README.md

asfpy - ASF Infrastructure Common Library for Python functions

This Python library contains features commonly used at the Apache Software Foundation.

(For asfpy 0.37 and below, look at our old Subversion repository)

Building asfpy package

Make sure you have the build and twine packages installed first ( pip3 install build twine)

Bump the version number in setup.py and run: python3 setup.py sdist bdist_wheel

Publishing a new asfpy package

After building the asfpy package, run the following command, where $version is the new version to publish:

python3 -m twine upload dist/asfpy-$version* (for instance dist/asfpy-0.38*)

See this guide for more details on working with PyPi.