/
githubmirror
/
wheel
Обзор
Документация
Войти
/
githubmirror
/
wheel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/quickstart.rst
24 строки
568 B
Dimitri Papadopoulos Orfanos
Fix documentation: grammar, typos, formatting, and links (#678)
08 фев 2026, 19:15
Не верифицирован
08 фев 2026, 19:15
ad932ee
Код
Авторство
О чём код?
Quickstart ========== To build a wheel for your project:: python -m pip install build python -m build --wheel The wheel will go to ``dist/yourproject-<tags>.whl``. If you want to make universal (Python 2/3 compatible, pure Python) wheels, add the following section to your ``setup.cfg``:: [bdist_wheel] universal = 1 To convert an ``.egg`` file or directory to a wheel:: wheel convert youreggfile.egg Similarly, to convert a Windows installer (made using ``python setup.py bdist_wininst``) to a wheel:: wheel convert yourinstaller.exe