/
niceSOFT
/
python3-hatchling
Обзор
Документация
Войти
/
niceSOFT
/
python3-hatchling
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/hatch/cli/python/__init__.py
19 строк
437 B
Dimitri Papadopoulos Orfanos
Upgrade Ruff to 0.13.2 (#1890)
28 сен 2025, 21:20
Не верифицирован
28 сен 2025, 21:20
aff6f39
Код
Авторство
О чём код?
import click from hatch.cli.python.find import find from hatch.cli.python.install import install from hatch.cli.python.remove import remove from hatch.cli.python.show import show from hatch.cli.python.update import update @click.group(short_help="Manage Python installations") def python(): pass python.add_command(find) python.add_command(install) python.add_command(remove) python.add_command(show) python.add_command(update)