setup.py: also install 'hgext3rd/__init__.py'
authorPierre-Yves David <pierre-yves.david@ens-lyon.org>
Fri, 14 Oct 2016 00:54:04 +0200
changeset 2016 192c9f92148d
parent 2015 6fbc654b42b2
child 2017 dd1055f38397
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).
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,
 )