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

hatch: add Spanish translation (#15018)

This commit is contained in:
Darío Hereñú 2024-12-08 11:52:43 -03:00 committed by GitHub
parent beda78530d
commit dfc4d8bc38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

29
pages.es/common/hatch.md Normal file
View file

@ -0,0 +1,29 @@
# hatch
> Gestor de proyectos Python moderno y extensible.
> Vea también: `poetry`.
> Más información: <https://hatch.pypa.io/latest/cli/reference/>.
- Crea un nuevo proyecto Hatch:
`hatch new {{nombre_del_proyecto}}`
- Inicializa Hatch para un proyecto existente:
`hatch new --init`
- Construye un proyecto Hatch:
`hatch build`
- Elimina artefactos de construcción:
`hatch clean`
- Crea un entorno por defecto con las dependencias definidas en el archivo `pyproject.toml`:
`hatch env create`
- Muestra las dependencias del entorno en forma de tabla:
`hatch dep show table`