From 9efdb0dfc16adb86801755cb77e5c5c2c032158c Mon Sep 17 00:00:00 2001 From: Hidden Z Date: Wed, 3 Nov 2010 20:27:47 +0000 Subject: [PATCH] setup.py: fix tempplates installation --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 9ec9538..1642d48 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,10 @@ setup( 'pyi2phosts.other', 'pyi2phosts.lib',], package_dir = {'pyi2phosts': 'web'}, - package_data = {'pyi2phosts.postkey': ['templates/postkey.html', 'templates/success_submission.html', - 'templates/local/policy.html'], - 'pyi2phosts.other': ['templates/base.html', 'templates/index.html', 'templates/404.html'], - 'pyi2phosts.jump': ['templates/jump*'], - 'pyi2phosts': ['templates/admin/base_site.html']}, + package_data = { + 'pyi2phosts': ['templates/postkey.html', 'templates/success_submission.html', + 'templates/local/policy.html', 'templates/base.html', 'templates/index.html', + 'templates/404.html', 'templates/jump*', 'templates/admin/base_site.html']}, scripts=['py-i2phosts-master', 'py-i2phosts-builder', 'py-i2phosts-checker', 'py-i2phosts-fetcher', 'py-i2phosts-injector', 'py-i2phosts-maint'], data_files=[('/etc/py-i2phosts', ['conf/master.conf', 'conf/checker.conf', 'conf/fetcher.conf',