~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Alexander Belchenko
  • Date: 2007-08-07 19:33:11 UTC
  • mfrom: (2678 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2685.
  • Revision ID: bialix@ukr.net-20070807193311-76klhk4sldylzucs
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
209
209
if 'bdist_wininst' in sys.argv:
210
210
    import glob
211
211
    # doc files
212
 
    docs = glob.glob('doc/*.htm') + ['doc/default.css']
213
 
    dev_docs = glob.glob('doc/developers/*.htm')
 
212
    docs = glob.glob('doc/*.html') + ['doc/default.css']
 
213
    dev_docs = glob.glob('doc/developers/*.html')
214
214
    # python's distutils-based win32 installer
215
215
    ARGS = {'scripts': ['bzr', 'tools/win32/bzr-win32-bdist-postinstall.py'],
216
216
            'ext_modules': ext_modules,
295
295
            'cmdclass': command_classes,
296
296
            'ext_modules': ext_modules,
297
297
           }
298
 
    
 
298
 
299
299
    ARGS.update(META_INFO)
300
300
    ARGS.update(BZRLIB)
301
301
    ARGS.update(PKG_DATA)