/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-08-11 12:19:56 UTC
  • mfrom: (6986.2.4 git-graduate)
  • Revision ID: breezy.the.bot@gmail.com-20180811121956-vg4h6snulccpy99e
Move git support to breezy.git.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
735
735
    if not 'bdist_egg' in sys.argv:
736
736
        # generate and install brz.1 only with plain install, not the
737
737
        # easy_install one
738
 
        DATA_FILES = [('man/man1', ['brz.1', 'breezy/plugins/git/git-remote-bzr.1'])]
 
738
        DATA_FILES = [('man/man1', ['brz.1', 'breezy/git/git-remote-bzr.1'])]
739
739
 
740
740
    DATA_FILES = DATA_FILES + I18N_FILES
741
741
    # std setup
742
742
    ARGS = {'scripts': ['brz',
743
743
                        # TODO(jelmer): Only install the git scripts if
744
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'],
 
745
                        'breezy/git/git-remote-bzr',
 
746
                        'breezy/git/bzr-receive-pack',
 
747
                        'breezy/git/bzr-upload-pack'],
748
748
            'data_files': DATA_FILES,
749
749
            'cmdclass': command_classes,
750
750
            'ext_modules': ext_modules,