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 --- MANIFEST.in | 2 ++ setup.py | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..3ed5601c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE lite-webui.py lite-xmlrpc.py +graft tests/ diff --git a/setup.py b/setup.py index feb4c965..5ca41e48 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