# HG changeset patch # User Franz Glasner # Date 1641810871 -3600 # Node ID 1b03b7a566af16595382698d58d190ad35b50753 # Parent b665877eb3a9ead42a2db5d66b1bc1523120379c FIX: Remove __* from the manifest's "global-exclude": it excludes __init__.py files also. Use "exclude" instead. This is rooted: paths are given relative to the package root directory. diff -r b665877eb3a9 -r 1b03b7a566af MANIFEST.in --- a/MANIFEST.in Mon Jan 10 09:12:49 2022 +0100 +++ b/MANIFEST.in Mon Jan 10 11:34:31 2022 +0100 @@ -4,4 +4,5 @@ graft tests graft windows-dev prune docs/_build -global-exclude *.pyc *.pyo __* +exclude __* +global-exclude *.pyc *.pyo