diff options
author | jaseg <git@jaseg.de> | 2022-06-13 22:56:08 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-06-13 22:56:08 +0200 |
commit | 32b6aa650a0551d997e2ca653fe86c53b653c065 (patch) | |
tree | 2a095e6aaaa7db1607fa5bb62cb379c357429063 /MANIFEST.in | |
parent | 23945b4cc602438a97c63ba61cd920ef27e131b6 (diff) | |
download | gerbolyze-32b6aa650a0551d997e2ca653fe86c53b653c065.tar.gz gerbolyze-32b6aa650a0551d997e2ca653fe86c53b653c065.tar.bz2 gerbolyze-32b6aa650a0551d997e2ca653fe86c53b653c065.zip |
pkg: Fix MANIFEST, unb0rk packagev3.0.6
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index eb7ab00..f17a451 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,9 +1,12 @@ +# setuptools'es default strategy of packing everything into the archive that is in git is really the opposite of smart +# here, especially because AFAICT after hours of googling there is no way to turn it off. Meh. Why is python packaging +# like this? what is so hard about putting a few files in a zip?! global-exclude * include README.rst include LICENSE include MANIFEST.in include setup.py - recursive-include gerbolyze *.py recursive-include bin * +recursive-include gerbolyze.egg-info * |