~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-06-06 08:37:14 UTC
  • mfrom: (2506.1.4 installer-0.17)
  • Revision ID: pqm@pqm.ubuntu.com-20070606083714-rt2za45t9gt5nqqh
(bialix,r=john,r=aaron) sanitize dev docs (performance-roadmap) &
 win32 installers improvements

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)