~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Aaron Bentley
  • Date: 2007-01-17 15:39:21 UTC
  • mfrom: (1551.9.35 Aaron's mergeable stuff)
  • mto: This revision was merged to the branch mainline in revision 2239.
  • Revision ID: abentley@panoramicfeedback.com-20070117153921-6pp9ssa2r8n5izoo
Merge bzr.ab, to avoid conflicts submitting

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
                                     version = version_str,
189
189
                                     description = META_INFO['description'],
190
190
                                     author = META_INFO['author'],
191
 
                                     copyright = "(c) Canonical Ltd, 2005-2006",
 
191
                                     copyright = "(c) Canonical Ltd, 2005-2007",
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
                              },