Fixed setup.py and MANIFEST.in so that templates/*.kid and static/ in ipa_webui are included

This commit is contained in:
Jason Gerard DeRose 2008-10-22 18:09:27 -06:00
parent 204c842a5d
commit b9361edc3d
2 changed files with 6 additions and 1 deletions

View File

@ -1,2 +1,4 @@
include LICENSE lite-webui.py lite-xmlrpc.py
graft tests/
graft ipa_webui/static/
include ipa_webui/templates/*.kid

View File

@ -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'],
)