~arankine/bzr-xmloutput/authors

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: guillo.gonzo at gmail
  • Date: 2009-07-02 17:20:14 UTC
  • mfrom: (126.1.1 version_update)
  • Revision ID: guillo.gonzo@gmail.com-20090702172014-003sh1yqp32tvm0h
Tags: 0.8.5
releaseĀ 0.8.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# Contributors:
19
19
#               Martin Albisetti
20
20
 
21
 
"""A Bazaar plugin that provides a option to generate XML output for 
 
21
"""A Bazaar plugin that provides a option to generate XML output for
22
22
builtins commands"""
23
23
 
24
24
from distutils.core import setup
25
25
from extras.bdist_nsis import bdist_nsis
26
26
 
27
27
bzr_plugin_name = 'xmloutput'
28
 
bzr_plugin_version = (0, 8, 4)
 
28
bzr_plugin_version = (0, 8, 5)
29
29
bzr_commands = ['xmlannotate', 'xmlinfo', 'xmllog', 'xmlls', 'xmlmissing',
30
30
        'xmlplugins', 'xmlstatus', 'xmlversion']
31
31
 
35
35
    }
36
36
    setup(
37
37
        name='bzr-xmloutput',
38
 
        version='0.8.4',
 
38
        version='0.8.5',
39
39
        maintainer='Guillermo Gonzalez',
40
40
        maintainer_email='guillo.gonzo@gmail.com',
41
 
        description="""A Bazaar plugin that provides a option to generate 
 
41
        description="""A Bazaar plugin that provides a option to generate
42
42
        XML output for builtins commands""",
43
43
        license='GNU GPL',
44
44
        url='https://launchpad.net/bzr-xmloutput',
45
45
        packages=['bzrlib.plugins.xmloutput'],
46
46
        package_dir={'bzrlib.plugins.xmloutput': '.'},
47
 
        long_description="""This plugin adds a xml variant to various builtin 
 
47
        long_description="""This plugin adds a xml variant to various builtin
48
48
        commands that generates XML output.""",
49
49
        cmdclass={'bdist_nsis': bdist_nsis, },
50
50
)