PYTHON PYPI


🏠 Accueil

Comands

registration

python setup.py register

update

bdist
create a built (binary) distribution
sdist

create 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>

Python PyPi commands

Comands

registration

python setup.py register

update

bdist
create a built (binary) distribution
sdist

create 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>