add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

29
pages.zh/common/hatch.md Normal file
View File

@@ -0,0 +1,29 @@
# hatch
> 现代、可扩展的 Python 项目管理工具。
> 另见:`poetry`。
> 更多信息:<https://hatch.pypa.io/latest/cli/reference/>.
- 创建一个新的 Hatch 项目:
`hatch new {{project_name}}`
- 为现有项目初始化 Hatch
`hatch new --init`
- 构建一个 Hatch 项目:
`hatch build`
- 移除构建产物:
`hatch clean`
- 创建一个包含在 `pyproject.toml` 文件中定义的依赖项的默认环境:
`hatch env create`
- 以表格形式显示环境依赖项:
`hatch dep show table`