~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Alexander Belchenko
  • Date: 2007-01-13 20:00:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2234.
  • Revision ID: bialix@ukr.net-20070113200038-ou53qsq5z0bt2gmn
Python 2.5 fixes for win32 installer

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
                                     company_name = "Canonical Ltd.",
193
193
                                     comments = META_INFO['description'],
194
194
                                    )
 
195
 
 
196
    additional_packages =  []
 
197
    if sys.version.startswith('2.4'):
 
198
        # adding elementtree package
 
199
        additional_packages.append('elementtree')
 
200
 
195
201
    options_list = {"py2exe": {"packages": BZRLIB['packages'] +
196
 
                                           ['elementtree'],
 
202
                                           additional_packages,
197
203
                               "excludes": ["Tkinter", "medusa"],
198
204
                               "dist_dir": "win32_bzr.exe",
199
205
                              },