5
readme = file('README').read()
5
8
if __name__ == '__main__':
6
9
from distutils.core import setup
7
10
version = bzr_plugin_version[:3]
8
11
version_string = ".".join([str(x) for x in version])
15
from bzrlib.bzr_distutils import build_mo
19
command_classes['build_mo'] = build_mo
10
21
setup(name='bzr-git',
11
22
description='Support for Git branches in Bazaar',
12
23
keywords='plugin bzr git bazaar',
16
27
maintainer='Jelmer Vernooij',
17
28
maintainer_email='jelmer@samba.org',
19
This plugin adds limited support for checking out and viewing
20
Git branches in Bazaar.
29
long_description=readme,
22
30
package_dir={'bzrlib.plugins.git':'.'},
23
31
packages=['bzrlib.plugins.git',
24
32
'bzrlib.plugins.git.tests'],
25
scripts=['bzr-receive-pack', 'bzr-upload-pack'],
33
scripts=['bzr-receive-pack', 'bzr-upload-pack', 'git-remote-bzr'],
35
'Topic :: Software Development :: Version Control',
36
'Environment :: Plugins',
37
'Development Status :: 4 - Beta',
38
'License :: OSI Approved :: GNU General Public License (GPL)',
39
'Natural Language :: English',
40
'Operating System :: OS Independent',
41
'Programming Language :: Python',
42
'Programming Language :: Python :: 2',
44
cmdclass=command_classes,