diff --git a/MANIFEST.in b/MANIFEST.in --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,7 +5,7 @@ include hgweb.cgi include hgeditor rewrite-log convert-repo include tests/* include *.txt -include templates/map +include templates/map templates/map-*[a-z] include templates/*.tmpl include doc/* include README diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -25,6 +25,8 @@ setup(name='mercurial', packages=['mercurial'], ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c'])], data_files=[('mercurial/templates', - ['templates/map'] + glob.glob('templates/*.tmpl'))], + ['templates/map'] + + glob.glob('templates/map-*') + + glob.glob('templates/*.tmpl'))], cmdclass = { 'install_data' : install_package_data }, scripts=['hg'])