tldr

My Linux cheatsheets, compatible with tldr

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
# 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/*`