~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-16 06:58:25 UTC
  • mto: (1861.2.3 installer.integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060716065825-8688beba0ca97583
python-installer:
- install html docs to C:\Python24\Doc\Bazaar-NG
- make entry in Start => Programs => Bazaar-NG:
    * link to documentation index
    * start bzr help in cmd shell

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
########################
131
131
 
132
132
if 'bdist_wininst' in sys.argv:
 
133
    import glob
 
134
    # doc files
 
135
    docs = glob.glob('doc/*.htm') + ['doc/default.css']
133
136
    # python's distutils-based win32 installer
134
137
    ARGS = {'scripts': ['bzr', 'tools/win32/bzr-win32-bdist-postinstall.py'],
135
138
            # install the txt files from bzrlib.doc.api.
136
139
            'package_data': {'bzrlib': ['doc/api/*.txt']},
 
140
            # help pages
 
141
            'data_files': [('Doc/Bazaar-NG', docs)],
137
142
           }
138
143
 
139
144
    ARGS.update(META_INFO)