Upload to Pypi

Intro Few days ago, I published my first python package to pypi. Here’s what I’ve learned. Tools build and twine were the two fundamental packages. The build package literally builds a repository into a distributable compressed file. This simple command python3 -m build will create a dist/ directory which contains the tar.gz and whl files. twine can directly upload your repository to pypi and testpypi. testpypi is nothing more than a test version of pypi....

April 15, 2021 · 3 min · Me