/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

Set parent path in git-import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
from info import *
 
4
 
 
5
readme = file('README').read()
 
6
 
 
7
 
 
8
if __name__ == '__main__':
 
9
    from distutils.core import setup
 
10
    version = bzr_plugin_version[:3]
 
11
    version_string = ".".join([str(x) for x in version])
 
12
 
 
13
    setup(name='bzr-git',
 
14
          description='Support for Git branches in Bazaar',
 
15
          keywords='plugin bzr git bazaar',
 
16
          version=version_string,
 
17
          url='http://bazaar-vcs.org/BzrForeignBranches/Git',
 
18
          license='GPL',
 
19
          maintainer='Jelmer Vernooij',
 
20
          maintainer_email='jelmer@samba.org',
 
21
          long_description=readme,
 
22
          package_dir={'bzrlib.plugins.git':'.'},
 
23
          packages=['bzrlib.plugins.git',
 
24
                    'bzrlib.plugins.git.tests'],
 
25
          scripts=['bzr-receive-pack', 'bzr-upload-pack'],
 
26
          classifiers=[
 
27
              'Topic :: Software Development :: Version Control',
 
28
              'Environment :: Plugins',
 
29
              'Development Status :: 4 - Beta',
 
30
              'License :: OSI Approved :: GNU General Public License (GPL)',
 
31
              'Natural Language :: English',
 
32
              'Operating System :: OS Independent',
 
33
              'Programming Language :: Python',
 
34
              'Programming Language :: Python :: 2',
 
35
          ]
 
36
          )