Subir a pip

Ejemplos de código

8
0

cómo hacer un paquete python

# This is too much for a grepper answer, so here is a link to the tutorial:
# https://towardsdatascience.com/how-to-build-your-first-python-package-6a00b02635c9
6
0

subir python a pip

1. Create files:
    __init__.py   setup.py   README.md   LICENSE
2. Check for setuptools and wheel:
    pip install --user --upgrade setuptools wheel
3. Generate package:
    py setup.py sdist bdist_wheel
4. Upload to pip:
    twine upload dist/*
2
0

crear paquete python

python3 setup.py sdist bdist_wheel
2
0

liberación de pypi

python3 setup.py sdist bdist_wheel
twine upload dist/*

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................