logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Create Hatch Projects - Manage Python Projects | Online Free DevTools by Hexmos

Create Python projects easily with Hatch. Manage dependencies, build artifacts, and environments for efficient Python development. Free online tool, no registration required.

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

See Also