mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Added MANIFEST.in; setup.py now includes kid templates in package_data
This commit is contained in:
parent
d44afa0f1a
commit
367bb63a26
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
include LICENSE lite-webui.py lite-xmlrpc.py
|
||||||
|
graft tests/
|
8
setup.py
8
setup.py
@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
# Authors: Jason Gerard DeRose <jderose@redhat.com>
|
# Authors:
|
||||||
|
# Jason Gerard DeRose <jderose@redhat.com>
|
||||||
#
|
#
|
||||||
# Copyright (C) 2008 Red Hat
|
# Copyright (C) 2008 Red Hat
|
||||||
# see file 'COPYING' for use and warranty information
|
# see file 'COPYING' for use and warranty information
|
||||||
@ -27,13 +28,16 @@ from distutils.core import setup
|
|||||||
setup(
|
setup(
|
||||||
name='freeipa',
|
name='freeipa',
|
||||||
version='1.99.0',
|
version='1.99.0',
|
||||||
license='GNU GPL 2',
|
license='GPLv2+',
|
||||||
|
url='http://freeipa.org/',
|
||||||
packages=[
|
packages=[
|
||||||
'ipalib',
|
'ipalib',
|
||||||
'ipalib.plugins',
|
'ipalib.plugins',
|
||||||
'ipa_server',
|
'ipa_server',
|
||||||
'ipa_server.plugins',
|
'ipa_server.plugins',
|
||||||
'ipa_webui',
|
'ipa_webui',
|
||||||
|
'ipa_webui.templates',
|
||||||
],
|
],
|
||||||
|
package_data={'ipa_webui.templates': ['*.kid']},
|
||||||
scripts=['ipa'],
|
scripts=['ipa'],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user