From b9361edc3dbf652a729e5d09c2505fc8295b4292 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 22 Oct 2008 18:09:27 -0600 Subject: Fixed setup.py and MANIFEST.in so that templates/*.kid and static/ in ipa_webui are included --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5ca41e482..b9e1454c8 100755 --- a/setup.py +++ b/setup.py @@ -38,6 +38,9 @@ setup( 'ipa_webui', 'ipa_webui.templates', ], - package_data={'ipa_webui.templates': ['*.kid']}, + package_data={ + 'ipa_webui.templates': ['*.kid'], + 'ipa_webui': ['static/*'], + }, scripts=['ipa'], ) -- cgit