setup.py
changeset 400 8b067bde6679
parent 241 afe895fcc0d0
child 429 688d03d6997a
equal deleted inserted replaced
399:f060d728fe54 400:8b067bde6679
    21       author_email='mpm@selenic.com',
    21       author_email='mpm@selenic.com',
    22       url='http://selenic.com/mercurial',
    22       url='http://selenic.com/mercurial',
    23       description='scalable distributed SCM',
    23       description='scalable distributed SCM',
    24       license='GNU GPL',
    24       license='GNU GPL',
    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                    Extension('mercurial.bdiff', ['mercurial/bdiff.c'])],
    27       data_files=[('mercurial/templates',
    28       data_files=[('mercurial/templates',
    28                    ['templates/map'] +
    29                    ['templates/map'] +
    29                    glob.glob('templates/map-*') +
    30                    glob.glob('templates/map-*') +
    30                    glob.glob('templates/*.tmpl'))], 
    31                    glob.glob('templates/*.tmpl'))], 
    31       cmdclass = { 'install_data' : install_package_data },
    32       cmdclass = { 'install_data' : install_package_data },