From 367bb63a269d20ca15d3c4248b6742135c514d82 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 22 Oct 2008 15:52:32 -0600 Subject: Added MANIFEST.in; setup.py now includes kid templates in package_data --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index feb4c9655..5ca41e482 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ #!/usr/bin/python -# Authors: Jason Gerard DeRose +# Authors: +# Jason Gerard DeRose # # Copyright (C) 2008 Red Hat # see file 'COPYING' for use and warranty information @@ -27,13 +28,16 @@ from distutils.core import setup setup( name='freeipa', version='1.99.0', - license='GNU GPL 2', + license='GPLv2+', + url='http://freeipa.org/', packages=[ 'ipalib', 'ipalib.plugins', 'ipa_server', 'ipa_server.plugins', 'ipa_webui', + 'ipa_webui.templates', ], + package_data={'ipa_webui.templates': ['*.kid']}, scripts=['ipa'], ) -- cgit