Uploading Packages to PyPI
Explore how to upload your Python packages to PyPI by creating distributions, configuring the .pypirc file, and testing with TestPyPI. Understand package metadata, distribution types, and best practices for sharing your code.
We'll cover the following...
We'll cover the following...
You will probably want to start out by testing with PyPI’s test server, which is at https://testpypi.python.org/pypi. You will have to register with that site too as it uses a different database than the main site. Once you’ve done that, you may want to create a .pypirc file somewhere on your operating system’s path. On Linux, you can use $HOME to find it and on Windows, you can use the HOME environ variable. This path is where you ...