Index: contrib/bazaar/bzreml/setup.py
===================================================================
--- contrib/bazaar/bzreml/setup.py	(revision bcb6f27c94d88d0e64ed1c34d95c4db12a923376)
+++ contrib/bazaar/bzreml/setup.py	(revision bcb6f27c94d88d0e64ed1c34d95c4db12a923376)
@@ -0,0 +1,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.0',
+	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']
+)
