~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Pool
  • Date: 2007-06-15 07:01:24 UTC
  • mfrom: (2528 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2530.
  • Revision ID: mbp@sourcefrog.net-20070615070124-clpwqh5gxc4wbf9l
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
    import glob
171
171
    # doc files
172
172
    docs = glob.glob('doc/*.htm') + ['doc/default.css']
 
173
    dev_docs = glob.glob('doc/developers/*.htm')
173
174
    # python's distutils-based win32 installer
174
175
    ARGS = {'scripts': ['bzr', 'tools/win32/bzr-win32-bdist-postinstall.py'],
175
176
            # help pages
176
 
            'data_files': [('Doc/Bazaar', docs)],
 
177
            'data_files': [('Doc/Bazaar', docs),
 
178
                           ('Doc/Bazaar/developers', dev_docs),
 
179
                          ],
177
180
           }
178
181
 
179
182
    ARGS.update(META_INFO)
223
226
 
224
227
    options_list = {"py2exe": {"packages": BZRLIB['packages'] +
225
228
                                           additional_packages,
226
 
                               "excludes": ["Tkinter", "medusa"],
 
229
                               "excludes": ["Tkinter", "medusa", "tools"],
227
230
                               "dist_dir": "win32_bzr.exe",
228
231
                              },
229
232
                   }