Mercurial > hg > mercurial-source
comparison setup.py @ 575:7f5ce4bbdd7b
More whitespace cleanups
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
More whitespace cleanups
manifest hash: 6721a7b11295e0127386b080fd7a7b516ebced74
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCxwm/ywK+sNU5EO8RAnl+AKCg/7ZCW7zIoG0nefksZzgLzgNmFACgnAFz
ZkW0LyZcU/hkFgXoGwo7ktk=
=AW+0
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Sat, 02 Jul 2005 13:40:15 -0800 |
parents | 688d03d6997a |
children | f5faab34f32e |
comparison
equal
deleted
inserted
replaced
574:af7e21f3b2d9 | 575:7f5ce4bbdd7b |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 | 2 # |
3 # This is the mercurial setup script. | 3 # This is the mercurial setup script. |
4 # | 4 # |
5 # './setup.py install', or | 5 # './setup.py install', or |
6 # './setup.py --help' for more options | 6 # './setup.py --help' for more options |
7 | 7 |
8 import glob | 8 import glob |
33 ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c']), | 33 ext_modules=[Extension('mercurial.mpatch', ['mercurial/mpatch.c']), |
34 Extension('mercurial.bdiff', ['mercurial/bdiff.c'])], | 34 Extension('mercurial.bdiff', ['mercurial/bdiff.c'])], |
35 data_files=[('mercurial/templates', | 35 data_files=[('mercurial/templates', |
36 ['templates/map'] + | 36 ['templates/map'] + |
37 glob.glob('templates/map-*') + | 37 glob.glob('templates/map-*') + |
38 glob.glob('templates/*.tmpl'))], | 38 glob.glob('templates/*.tmpl'))], |
39 cmdclass = { 'install_data' : install_package_data }, | 39 cmdclass = { 'install_data' : install_package_data }, |
40 scripts=['hg', 'hgmerge']) | 40 scripts=['hg', 'hgmerge']) |
41 finally: | 41 finally: |
42 mercurial.version.forget_version() | 42 mercurial.version.forget_version() |