~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Alexander Belchenko
  • Date: 2007-06-06 07:57:00 UTC
  • mto: This revision was merged to the branch mainline in revision 2512.
  • Revision ID: bialix@ukr.net-20070606075700-fefq7kluy10inv0m
pack developers docs to windows installers

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)