diff options
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rwxr-xr-x | setup.py | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..3ed5601ca --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE lite-webui.py lite-xmlrpc.py +graft tests/ @@ -1,6 +1,7 @@ #!/usr/bin/python -# Authors: Jason Gerard DeRose <jderose@redhat.com> +# Authors: +# Jason Gerard DeRose <jderose@redhat.com> # # 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'], ) |