This page contains a series of notes intended to be beneficial for any contributors to the Python Aesel Client.
PyAesel tests require a running Aesel server on localhost, and can be run with:
python -m pytest
In order to generate a PIP distribution, you’ll need a ~/.pypirc file with the contents:
[distutils]
index-servers=pypi
[pypi]
username: username
password: password
Then, the following commands will generate the distribution:
pip install --user twine
python setup.py sdist bdist_wheel
twine upload dist/*