##// END OF EJS Templates
setup: reformat options argument...
Gregory Szorc -
r38022:cd4959c3 default
parent child Browse files
Show More
@@ -1066,16 +1066,24 b" setup(name='mercurial',"
1066 package_data=packagedata,
1066 package_data=packagedata,
1067 cmdclass=cmdclass,
1067 cmdclass=cmdclass,
1068 distclass=hgdist,
1068 distclass=hgdist,
1069 options={'py2exe': {'packages': ['hgdemandimport', 'hgext', 'email',
1069 options={
1070 # implicitly imported per module policy
1070 'py2exe': {
1071 # (cffi wouldn't be used as a frozen exe)
1071 'packages': [
1072 'mercurial.cext',
1072 'hgdemandimport',
1073 #'mercurial.cffi',
1073 'hgext',
1074 'mercurial.pure']},
1074 'email',
1075 'bdist_mpkg': {'zipdist': False,
1075 # implicitly imported per module policy
1076 'license': 'COPYING',
1076 # (cffi wouldn't be used as a frozen exe)
1077 'readme': 'contrib/macosx/Readme.html',
1077 'mercurial.cext',
1078 'welcome': 'contrib/macosx/Welcome.html',
1078 #'mercurial.cffi',
1079 },
1079 'mercurial.pure',
1080 },
1080 ],
1081 },
1082 'bdist_mpkg': {
1083 'zipdist': False,
1084 'license': 'COPYING',
1085 'readme': 'contrib/macosx/Readme.html',
1086 'welcome': 'contrib/macosx/Welcome.html',
1087 },
1088 },
1081 **extra)
1089 **extra)
General Comments 0
You need to be logged in to leave comments. Login now