comparison setup.py @ 3290:ae8583e746f1

merged now fully working base85 codec, though currently unused.
author Thomas Arendsen Hein <thomas@intevation.de>
date Sun, 08 Oct 2006 10:56:21 +0200
parents 1f2c3983a6c5
children 231e61de692c
comparison
equal deleted inserted replaced
3289:48ae77d1e083 3290:ae8583e746f1
87 url='http://selenic.com/mercurial', 87 url='http://selenic.com/mercurial',
88 description='Scalable distributed SCM', 88 description='Scalable distributed SCM',
89 license='GNU GPL', 89 license='GNU GPL',
90 packages=['mercurial', 'mercurial.hgweb', 'hgext'], 90 packages=['mercurial', 'mercurial.hgweb', 'hgext'],
91 ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c']), 91 ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c']),
92 Extension('mercurial.bdiff', ['mercurial/bdiff.c'])], 92 Extension('mercurial.bdiff', ['mercurial/bdiff.c']),
93 Extension('mercurial.base85', ['mercurial/base85.c'])],
93 data_files=[(os.path.join('mercurial', root), 94 data_files=[(os.path.join('mercurial', root),
94 [os.path.join(root, file_) for file_ in files]) 95 [os.path.join(root, file_) for file_ in files])
95 for root, dirs, files in os.walk('templates')], 96 for root, dirs, files in os.walk('templates')],
96 cmdclass=cmdclass, 97 cmdclass=cmdclass,
97 scripts=['hg', 'hgmerge'], 98 scripts=['hg', 'hgmerge'],