~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

Tags: bzr-1.7
(jam) bring in Mark Hammonds setup tweaks, release bzr 1.7 final

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
    excludes.append('PyQt4.elementtree.ElementTree')
352
352
    includes.append('sip') # extension module required for Qt.
353
353
    packages.append('pygments') # colorizer for qbzr
 
354
    packages.append('docutils') # html formatting
354
355
    # but we can avoid many Qt4 Dlls.
355
356
    dll_excludes.extend(
356
357
        """QtAssistantClient4.dll QtCLucene4.dll QtDesigner4.dll
509
510
            plugins = set(dirs)
510
511
        x = []
511
512
        for i in files:
512
 
            if os.path.splitext(i)[1] not in [".py", ".pyd", ".dll"]:
 
513
            if os.path.splitext(i)[1] not in [".py", ".pyd", ".dll", ".mo"]:
513
514
                continue
514
515
            if i == '__init__.py' and root == 'bzrlib/plugins':
515
516
                continue