Builds¶
Configuration¶
Builds are configured using the tool.hatch.build
table. Every target is defined by a section within tool.hatch.build.targets
, for example:
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.build.targets.wheel]
packages = ["src/foo"]
[build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[build.targets.wheel]
packages = ["src/foo"]
Building¶
Invoking the build
command without any arguments will build all defined targets, each in an isolated environment:
$ hatch build
Setting up build environment
[sdist]
dist/hatch_demo-1rc0.tar.gz
Setting up build environment
[wheel]
dist/hatch_demo-1rc0-py3-none-any.whl
To only build specific targets, use the -t
/--target
option:
$ hatch build -t wheel
Setting up build environment
[wheel]
dist/hatch_demo-1rc0-py3-none-any.whl
If the target supports multiple versions, you can specify the exact versions to build by appending a colon followed by the desired versions separated by commas:
$ hatch -v build -t wheel:standard
Setting up build environment
...
[wheel]
Building `wheel` version `standard`
dist/hatch_demo-1rc0-py3-none-any.whl
Packaging ecosystem¶
Hatch complies with modern Python packaging specs and therefore your projects can be used by other tools with Hatch serving as just the build backend.
So you could use tox as an alternative to Hatch's environment management, or cibuildwheel to distribute packages for every platform, and they both will transparently use Hatch without any extra modification.