4
New to Python packaging? Avoid hatch
(danpassaro.dev)
Welcome to the Python community on the programming.dev Lemmy instance!
Past
November 2023
October 2023
July 2023
August 2023
September 2023
you just need
only-includehttps://hatch.pypa.io/1.13/config/build/#explicit-selection
it's easier than changing build backends
and a lot of times
tests/(anddocs/) are included with source code in an sdist format - https://discuss.python.org/t/should-sdists-include-docs-and-tests/14578Interesting discussion, thanks for the link! I side with pf_moore there; when I think of distributing a library I think of shipping only the library code itself and none of the supporting files, although I can understand the argument to include things like
tests/anddocs/.That said, if you haven't already tailored your project for hatch, configuring
only-includeis more work than switching to a build backend that just bundles source modules by default. With the right config hatch can do what you like, and I can understand existing users sticking with it, but for newbies I think it's really risky to suggest a build backend that grabs everything it finds in the working directory and packages it up for PyPI. It's just surprising and dangerous default behavior imo.