/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

Cope with tuples in refs dictionary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
from info import *
4
4
 
5
 
readme = file('README').read()
6
 
 
7
 
 
8
5
if __name__ == '__main__':
9
6
    from distutils.core import setup
10
7
    version = bzr_plugin_version[:3]
18
15
          license='GPL',
19
16
          maintainer='Jelmer Vernooij',
20
17
          maintainer_email='jelmer@samba.org',
21
 
          long_description=readme,
 
18
          long_description="""
 
19
          This plugin adds limited support for checking out and viewing
 
20
          Git branches in Bazaar.
 
21
          """,
22
22
          package_dir={'bzrlib.plugins.git':'.'},
23
23
          packages=['bzrlib.plugins.git',
24
24
                    'bzrlib.plugins.git.tests'],
25
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
26
          )