/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
0.171.25 by Jelmer Vernooij
Add setup.py
1
#!/usr/bin/env python2.4
2
3
from distutils.core import setup
4
5
setup(name='bzr-email',
6
      description='Email plugin for Bazaar',
7
      keywords='plugin bzr email',
8
      version='0.0.1',
9
      url='http://launchpad.net/bzr-email',
10
      download_url='http://launchpad.net/bzr-email',
11
      license='GPL',
12
      author='Robert Collins',
13
      author_email='robertc@robertcollins.net',
14
      long_description="""
15
      Hooks into Bazaar and sends commit notification emails.
16
      """,
17
      package_dir={'bzrlib.plugins.email':'.', 
18
                   'bzrlib.plugins.email.tests':'tests'},
19
      packages=['bzrlib.plugins.email', 
20
                'bzrlib.plugins.email.tests']
21
      )