/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

from distutils.core import setup

setup(name='bzr-git',
      description='Support for Git branches in Bazaar',
      keywords='plugin bzr git bazaar',
      version='0.1',
      url='http://bazaar-vcs.org/BzrForeignBranches/Git',
      license='GPL',
      author='Robert Collins',
      author_email='robertc@robertcollins.net',
      long_description="""
      This plugin adds limited support for checking out and viewing 
      Git branches in Bazaar.
      """,
      package_dir={'bzrlib.plugins.git':'.'},
      packages=['bzrlib.plugins.git'],
      scripts=['bzr-receive-pack', 'bzr-upload-pack'],
      )