pip install twine
pip install wheel
python3 -m pip install --user --upgrade setuptools wheel twine
Create HOME/.pypirc
and add PyPI API token.
[pypi]
username = __token__
password = <the token value, including the `pypi-` prefix>
python3 setup.py sdist bdist_wheel
twine upload dist/*
Add following in requirements.txt
file
-e /path/to/axioms-flask-py
or
pip install -e /path/to/axioms-flask-py
or
python3 setup.py develop