# HG changeset patch # User Pierre-Yves David # Date 1476399244 -7200 # Node ID 192c9f92148d446bb2462714fe6be96190a633a5 # Parent 6fbc654b42b29f6bee5665b85b429450f76e3ff2 setup.py: also install 'hgext3rd/__init__.py' This file is needed for the namespace package to work. (And also for the package to work on its own at all). diff -r 6fbc654b42b2 -r 192c9f92148d setup.py --- a/setup.py Fri Oct 07 04:10:23 2016 +0200 +++ b/setup.py Fri Oct 14 00:54:04 2016 +0200 @@ -19,6 +19,6 @@ long_description=open('README.md').read(), keywords='hg mercurial', license='GPLv2+', - packages=['hgext3rd.topic'], + packages=['hgext3rd'], install_requires=requires, )