~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-23 19:18:42 UTC
  • mfrom: (3723.1.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080923191842-0hfq8zykwwm1oo9k
(jam) Merge bzr 1.7-final into bzr.dev

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