##// END OF EJS Templates
setup: forcibly include cext/pure packages in py2exe (issue5625)...
Yuya Nishihara -
r33600:cfa08b06 stable
parent child Browse files
Show More
@@ -934,7 +934,12 b" setup(name='mercurial',"
934 package_data=packagedata,
934 package_data=packagedata,
935 cmdclass=cmdclass,
935 cmdclass=cmdclass,
936 distclass=hgdist,
936 distclass=hgdist,
937 options={'py2exe': {'packages': ['hgdemandimport', 'hgext', 'email']},
937 options={'py2exe': {'packages': ['hgdemandimport', 'hgext', 'email',
938 # implicitly imported per module policy
939 # (cffi wouldn't be used as a frozen exe)
940 'mercurial.cext',
941 #'mercurial.cffi',
942 'mercurial.pure']},
938 'bdist_mpkg': {'zipdist': False,
943 'bdist_mpkg': {'zipdist': False,
939 'license': 'COPYING',
944 'license': 'COPYING',
940 'readme': 'contrib/macosx/Readme.html',
945 'readme': 'contrib/macosx/Readme.html',
General Comments 0
You need to be logged in to leave comments. Login now