~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin Packman
  • Date: 2011-11-29 16:14:12 UTC
  • mto: This revision was merged to the branch mainline in revision 6327.
  • Revision ID: martin.packman@canonical.com-20111129161412-mx4yu5mg6xsaty46
Require the dulwich package when using py2exe with the git plugin enabled

Show diffs side-by-side

added added

removed removed

Lines of Context:
482
482
    packages.append('sqlite3')
483
483
 
484
484
 
 
485
def get_git_py2exe_info(includes, excludes, packages):
 
486
    packages.append('dulwich')
 
487
 
 
488
 
485
489
def get_fastimport_py2exe_info(includes, excludes, packages):
486
490
    # This is the python-fastimport package, not to be confused with the
487
491
    # bzr-fastimport plugin.
680
684
    if 'svn' in plugins:
681
685
        get_svn_py2exe_info(includes, excludes, packages)
682
686
 
 
687
    if 'git' in plugins:
 
688
        get_git_py2exe_info(includes, excludes, packages)
 
689
 
683
690
    if 'fastimport' in plugins:
684
691
        get_fastimport_py2exe_info(includes, excludes, packages)
685
692