/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

Support path argument to get_file_text.

Show diffs side-by-side

added added

removed removed

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