/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Marius Kruger
  • Date: 2007-01-18 04:11:51 UTC
  • mfrom: (2240 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2241.
  • Revision ID: amanic@gmail.com-20070118041151-m5kjsutaymhy8yoy
merge bzr.dev

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
                              },