setup: don't ship i18n directory
The directory was never actually used at runtime and other programs
don't ship it either.
--- a/setup.py Thu Dec 03 11:07:14 2009 +0100
+++ b/setup.py Thu Dec 03 20:41:43 2009 +0100
@@ -256,7 +256,7 @@
packages.extend(['hgext.inotify', 'hgext.inotify.linux'])
datafiles = []
-for root in ('templates', 'i18n', 'help'):
+for root in ('templates', 'help'):
for dir, dirs, files in os.walk(root):
dirs[:] = [x for x in dirs if not x.startswith('.')]
files = [x for x in files if not x.startswith('.')]