~martin-decky/helenos/rcu

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup

setup(
	name = 'bzreml',
	description = 'Commit email plugin for Bazaar',
	keywords = 'plugin bzr email',
	version = '1.2',
	url = 'http://www.decky.cz/',
	license = 'BSD',
	author = 'Martin Decky',
	author_email = 'martin@decky.cz',
	long_description = """Hooks into Bazaar and sends commit notification emails.""",
	package_dir = {'bzrlib.plugins.eml':'.'}, 
	packages = ['bzrlib.plugins.eml']
)