~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Ian Clatworthy
  • Date: 2007-12-11 02:07:30 UTC
  • mto: (3119.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3120.
  • Revision ID: ian.clatworthy@internode.on.net-20071211020730-sdj4kj794dw0628e
make help topics more discoverable

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
PKG_DATA = {# install files from selftest suite
31
31
            'package_data': {'bzrlib': ['doc/api/*.txt',
32
32
                                        'tests/test_patches_data/*',
33
 
                                        'help/*.txt',
 
33
                                        'help_topics/en/*.txt',
34
34
                                       ]},
35
35
           }
36
36
 
307
307
 
308
308
    # text files for help topis
309
309
    import glob
310
 
    text_topics = glob.glob('bzrlib/help/*.txt')
 
310
    text_topics = glob.glob('bzrlib/help_topics/en/*.txt')
311
311
 
312
312
    options_list = {"py2exe": {"packages": BZRLIB['packages'] +
313
313
                                           additional_packages,
320
320
                   'tools/win32/bzr_postinstall.py',
321
321
                  ],
322
322
          zipfile='lib/library.zip',
323
 
          data_files=[('lib/help', text_topics)],
 
323
          data_files=[('lib/help_topics/en', text_topics)],
324
324
          )
325
325
 
326
326
else: