/
githubmirror
/
wheel
Обзор
Документация
Войти
/
githubmirror
/
wheel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/reference/wheel_convert.rst
46 строк
903 B
Dimitri Papadopoulos Orfanos
Fix documentation: grammar, typos, formatting, and links (#678)
08 фев 2026, 19:15
Не верифицирован
08 фев 2026, 19:15
ad932ee
Код
Авторство
О чём код?
wheel convert ============= Usage ----- :: wheel convert [options] <egg_file_or_directory> [egg_file_or_directory...] Description ----------- Convert one or more eggs (``.egg``; made with ``bdist_egg``) or Windows installers (``.exe``; made with ``bdist_wininst``) into wheels. Egg names must match the standard format: * ``<project>-<version>-pyX.Y`` for pure Python eggs * ``<project>-<version>-pyX.Y-<arch>`` for binary eggs Options ------- .. option:: -d, --dest-dir <dir> Directory to store the generated wheels in (defaults to current directory). Examples -------- * Convert a single egg file:: $ wheel convert foobar-1.2.3-py2.7.egg $ ls *.whl foobar-1.2.3-py27-none.whl * If the egg file name is invalid:: $ wheel convert pycharm-debug.egg "pycharm-debug.egg" is not a valid egg name (must match at least name-version-pyX.Y.egg) $ echo $? 1