/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

Created plugin, basic functionality of looking for NEWS and including the
NEWS diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python2.4
 
2
from distutils.core import setup
 
3
 
 
4
bzr_plugin_name = 'commitfromnews'
 
5
 
 
6
bzr_plugin_version = (0, 0, 1, 'dev', 0)
 
7
bzr_minimum_version = (2, 2, 0)
 
8
 
 
9
if __name__ == 'main':
 
10
    setup(name="bzr-commitfromnews plugin",
 
11
          version="0.0.1dev0",
 
12
          description="Generate commit message templates from NEWS.",
 
13
          author="Canonical Ltd",
 
14
          author_email="bazaar@lists.canonical.com",
 
15
          license = "GNU GPL v2",
 
16
          url="https://launchpad.net/bzr-commitfromnews",
 
17
          packages=['bzrlib.plugins.commitfromnews',
 
18
                    'bzrlib.plugins.commitfromnews.tests',
 
19
                    ],
 
20
          package_dir={'bzrlib.plugins.commitfromnews': '.'})