419
by Martin Decky
add setup script |
1 |
#!/usr/bin/env python
|
2 |
||
3 |
from distutils.core import setup |
|
4 |
||
5 |
setup( |
|
6 |
name = 'bzreml', |
|
7 |
description = 'Commit email plugin for Bazaar', |
|
8 |
keywords = 'plugin bzr email', |
|
1148
by Martin Decky
update Bazaar email plugin |
9 |
version = '1.2', |
419
by Martin Decky
add setup script |
10 |
url = 'http://www.decky.cz/', |
11 |
license = 'BSD', |
|
12 |
author = 'Martin Decky', |
|
13 |
author_email = 'martin@decky.cz', |
|
14 |
long_description = """Hooks into Bazaar and sends commit notification emails.""", |
|
15 |
package_dir = {'bzrlib.plugins.eml':'.'}, |
|
16 |
packages = ['bzrlib.plugins.eml'] |
|
17 |
)
|