Borrow setup.py from bzr-email
[bzrirker.git] / setup.py
1 #!/usr/bin/env python2.4
2
3 from distutils.core import setup
4
5 if __name__ == '__main__':
6     setup(name='bzrirker',
7       description='Irker plugin for Bazaar',
8       keywords='plugin bzr irker',
9       version='0.0.1',
10       url='www.ctpug.org.za',
11       download_url='git@ctpug.org.za:bzrirker',
12       license='GPL',
13       author='Neil Muller',
14       author_email='drnlmuller+irker@gmail.com',
15       long_description="""
16       Hooks into Bazaar and sends commit notification messages via irker.
17       """,
18       package_dir={'bzrlib.plugins.irkerhook':'.',
19                    'bzrlib.plugins.irkerhook.tests':'tests'},
20       packages=['bzrlib.plugins.irkerhook',
21                 'bzrlib.plugins.irkerhook.tests']
22       )