PyPI

Installation

$ pip3 install --user --upgrade setuptools wheel twine

Configuration

~/.pypirc file:

[distutils]
index-servers=pypi

[pypi]
repository = https://upload.pypi.org/legacy/
username = <username>
password = <password>

Pack

$ py setup.py sdist bdist_wheel

Upload

$ twine upload dist/*