##// END OF EJS Templates
hgweb: put map-raw in setup.py and MANIFEST.in...
mpm@selenic.com -
r218:06bc1ef2 default
parent child Browse files
Show More
@@ -5,7 +5,7 b' include hgweb.cgi'
5 include hgeditor rewrite-log convert-repo
5 include hgeditor rewrite-log convert-repo
6 include tests/*
6 include tests/*
7 include *.txt
7 include *.txt
8 include templates/map
8 include templates/map templates/map-*[a-z]
9 include templates/*.tmpl
9 include templates/*.tmpl
10 include doc/*
10 include doc/*
11 include README
11 include README
@@ -25,6 +25,8 b" setup(name='mercurial',"
25 packages=['mercurial'],
25 packages=['mercurial'],
26 ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c'])],
26 ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c'])],
27 data_files=[('mercurial/templates',
27 data_files=[('mercurial/templates',
28 ['templates/map'] + glob.glob('templates/*.tmpl'))],
28 ['templates/map'] +
29 glob.glob('templates/map-*') +
30 glob.glob('templates/*.tmpl'))],
29 cmdclass = { 'install_data' : install_package_data },
31 cmdclass = { 'install_data' : install_package_data },
30 scripts=['hg'])
32 scripts=['hg'])
General Comments 0
You need to be logged in to leave comments. Login now