Originally reported by: wyatt (Bitbucket: wyatt, GitHub: wyatt)
https://bitbucket.org/pypa/setuptools/src/13a839bd8ad27a17543878068b996991357264d2/setuptools/command/bdist_egg.py?at=default#cl-273
This makes other packages in the namespace unimportable.
Proposed solutions:
- Don't add a missing
__init__.py under any circumstances
- Or, if that's not feasible, don't add an
__init__.py on Python 3.3+
It seems to me that the installer shouldn't be adding files to an installed package in any case. Is there a reason it does this?
Originally reported by: wyatt (Bitbucket: wyatt, GitHub: wyatt)
https://bitbucket.org/pypa/setuptools/src/13a839bd8ad27a17543878068b996991357264d2/setuptools/command/bdist_egg.py?at=default#cl-273
This makes other packages in the namespace unimportable.
Proposed solutions:
__init__.pyunder any circumstances__init__.pyon Python 3.3+It seems to me that the installer shouldn't be adding files to an installed package in any case. Is there a reason it does this?