Mercurial > hg
changeset 4628:02956be66a58
Fix for including hgext in Windows compiled version.
From Shun-ichi GOTO via Mercurial mailing list.
author | Lee Cantey <lcantey@gmail.com> |
---|---|
date | Mon, 18 Jun 2007 15:14:49 -0700 |
parents | d4e4d0f4fba4 |
children | a04b5f37eda7 |
files | setup.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Mon Jun 18 15:06:14 2007 -0700 +++ b/setup.py Mon Jun 18 15:14:49 2007 -0700 @@ -70,7 +70,8 @@ for root, dirs, files in os.walk('templates')], cmdclass=cmdclass, scripts=['hg', 'hgmerge'], - options=dict(bdist_mpkg=dict(zipdist=True, + options=dict(py2exe=dict(packages=['hgext']), + bdist_mpkg=dict(zipdist=True, license='COPYING', readme='contrib/macosx/Readme.html', welcome='contrib/macosx/Welcome.html')),