mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 21:22:06 +02:00

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
529 B
529 B
hatch
Modern, extensible Python project manager. See also:
poetry
. More information: https://hatch.pypa.io/latest/cli/reference/.
- Create a new Hatch project:
hatch new {{project_name}}
- Initialize Hatch for an existing project:
hatch new --init
- Build a Hatch project:
hatch build
- Remove build artifacts:
hatch clean
- Create a default environment with dependencies defined in the
pyproject.toml
file:
hatch env create
- Show environment dependencies as a table:
hatch dep show table