~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-01-15 03:31:34 UTC
  • mfrom: (2231.1.1 setup.fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20070115033134-6f456e8e9cc87f35
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
                              },