/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: Invité
  • Date: 2009-05-05 20:43:26 UTC
  • mto: (0.200.441 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: guest@mirexpress-20090505204326-n0vcprylu2hyzq4v
Ensure git plugin is loaded in bzr-*-pack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
from distutils.core import setup
 
4
 
 
5
version = (0, 2, 2)
 
6
version_string = ".".join([str(x) for x in version])
 
7
 
 
8
setup(name='bzr-git',
 
9
      description='Support for Git branches in Bazaar',
 
10
      keywords='plugin bzr git bazaar',
 
11
      version=version_string,
 
12
      url='http://bazaar-vcs.org/BzrForeignBranches/Git',
 
13
      license='GPL',
 
14
      author='Robert Collins',
 
15
      author_email='robertc@robertcollins.net',
 
16
      long_description="""
 
17
      This plugin adds limited support for checking out and viewing 
 
18
      Git branches in Bazaar.
 
19
      """,
 
20
      package_dir={'bzrlib.plugins.git':'.'},
 
21
      packages=['bzrlib.plugins.git',
 
22
                'bzrlib.plugins.git.foreign',
 
23
                'bzrlib.plugins.git.tests'],
 
24
      scripts=['bzr-receive-pack', 'bzr-upload-pack'],
 
25
      )