/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-05-10 01:03:05 UTC
  • mfrom: (6883.23.28 bundle-git)
  • Revision ID: breezy.the.bot@gmail.com-20180510010305-aclsb7jlq8pmmawt
Bundle the git plugin with Breezy.

Merged from https://code.launchpad.net/~jelmer/brz/bundle-git/+merge/345138

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        ],
60
60
    'extras_require': {
61
61
        'fastimport': ['fastimport>=0.9.8'],
 
62
        'git': ['dulwich>=0.19.1'],
62
63
        },
63
64
}
64
65
 
488
489
        return docs
489
490
 
490
491
    # python's distutils-based win32 installer
491
 
    ARGS = {'scripts': ['brz', 'tools/win32/brz-win32-bdist-postinstall.py'],
 
492
    ARGS = {'scripts': [ 'brz', 'tools/win32/brz-win32-bdist-postinstall.py'],
492
493
            'ext_modules': ext_modules,
493
494
            # help pages
494
495
            'data_files': find_docs(),
734
735
    if not 'bdist_egg' in sys.argv:
735
736
        # generate and install brz.1 only with plain install, not the
736
737
        # easy_install one
737
 
        DATA_FILES = [('man/man1', ['brz.1'])]
 
738
        DATA_FILES = [('man/man1', ['brz.1', 'breezy/plugins/git/git-remote-bzr.1'])]
738
739
 
739
740
    DATA_FILES = DATA_FILES + I18N_FILES
740
741
    # std setup
741
 
    ARGS = {'scripts': ['brz'],
 
742
    ARGS = {'scripts': ['brz',
 
743
                        # TODO(jelmer): Only install the git scripts if
 
744
                        # Dulwich was found.
 
745
                        'breezy/plugins/git/git-remote-bzr',
 
746
                        'breezy/plugins/git/bzr-receive-pack',
 
747
                        'breezy/plugins/git/bzr-upload-pack'],
742
748
            'data_files': DATA_FILES,
743
749
            'cmdclass': command_classes,
744
750
            'ext_modules': ext_modules,