Skip to content
PySimpleSQL edited this page May 27, 2021 · 2 revisions

Notes to self:

Creating PyPi package links: https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56 https://www.codementor.io/@arpitbhayani/host-your-python-package-using-github-on-pypi-du107t7ku

Releases:

  • Update version in pysimplesql.py
  • update version and download path in setup.py
  • commit and push
  • Create release in Github and tag the version
  • on local machine:
python3 setup.py sdist
python3 -m twine check dist/*
python3 -m twine upload dist/*
Clone this wiki locally