1
#!/usr/bin/env python2.4
2
from distutils.core import setup
4
bzr_plugin_name = 'commitfromnews'
6
bzr_plugin_version = (0, 0, 1, 'dev', 0)
7
bzr_minimum_version = (2, 2, 0)
10
setup(name="bzr-commitfromnews plugin",
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',
20
package_dir={'bzrlib.plugins.commitfromnews': '.'})