~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to setup.py

(jelmer) Use the absolute_import feature everywhere in bzrlib,
 and add a source test to make sure it's used everywhere. (Jelmer Vernooij)

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