Upload your package to Pypi


devops

To upload your project to Pypi, this assumes you have your setup.py ready

cd into your package directory and type

python setup.py sdist

then install twine if you don’t have it

python -m pip install twine

then create an account on pypi

then type, providing your username and password

twine upload dist/*

It should now be uploaded!

Written by

Abdur-Rahmaan Janhangeer

Chef

Python author of 7+ years having worked for Python companies around the world

Suggested Posts

Python EFL: Building Custom Elementary Widgets (2026)

Want to create unique UI components tailored to your app’s needs? This Python EFL tutorial teaches y...

Read article

Python EFL: Scalable GUIs with Generic List (Genlist) (2026)

Handling thousands of UI elements without slowing down your app? This Python EFL tutorial introduces...

Read article

Python EFL: Building Standard and Searchable Lists (2026)

Need to display a large amount of selectable data in your app? This Python EFL tutorial covers the L...

Read article
Free Flask Course