Skip to content

Instantly share code, notes, and snippets.

@AmitGupta7580
Created April 15, 2022 21:49
Show Gist options
  • Save AmitGupta7580/71fcb9585702bdf4fcebee163c637294 to your computer and use it in GitHub Desktop.
Save AmitGupta7580/71fcb9585702bdf4fcebee163c637294 to your computer and use it in GitHub Desktop.
  1. Create Python Module.
  2. Make desired changes in setup.py that you want to reflect on Pypi website.
  3. Building your Project python setup.py sdist bdist_wheel
  4. Check on builded files twine check dist/*
  5. Test Publish twine upload --repository-url https://test.pypi.org/legacy/ dist/*
  6. Version Publish twine upload dist/*

Complete Tutorial : Link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment