use hatch instead of setuptools
hatch is the new recommended build system for python packages promoted by the PyPA.
- from user perspective nothing changes (you can use the
hatchcommand now) - no
MANIFEST.inneeded anymore (will ship.gitignorein sdist to be able to build wheel, auto-included) -
license-filesentry in[project]not needed (will automatically determine common license file names) - added
.git_archival.txtand.gitattributesfor git archive install support (correct version determined), solves #99 (closed)
Question
-
Do we want more explicit dev versions? ( 0.4.0rc3.dev566+ga16a6c6vs0.4.0rc3.dev566)
Edited by Sebastian Müller