Python PyPi
Comands
registration
python setup.py registerupdate
bdist- create a built (binary) distribution
sdistcreate a source distribution (tarball, zip file, etc.)
python setup.py sdist upload
configuration file
is called .pypirc, is located in your home direve ~ and has the following structure
[distutils]
index-servers =
pypi
other
[pypi]
repository: <repository-url>
username: <username>
password: <password>
[other]
repository: http://example.com/pypi
username: <username>
password: <password>