diff --git a/pages/common/hatch.md b/pages/common/hatch.md new file mode 100644 index 0000000000..2c857f7174 --- /dev/null +++ b/pages/common/hatch.md @@ -0,0 +1,29 @@ +# hatch + +> Modern, extensible Python project manager. +> See also: `poetry`. +> More information: . + +- 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`