This repository has been archived on 2022-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
tldr/pages/linux/pypi.md
2021-01-07 08:40:19 -06:00

279 B

Maintaining PyPI packages

Maintaining packages on the Python Package Index More information: https://packaging.python.org/tutorials/packaging-projects/

  • Build the package:

python3 setup.py sdist bdist_wheel

  • Upload the package to the PyPI:

twine upload dist/*