Fix templates installation

The setup.py does not install all the required templates, making horizon
unable to render pages.

Change-Id: I1e20e232e6837a3db934bce764bdbe1d1b8d5b6f
Signed-off-by: Julien Danjou <julien.danjou@enovance.com>
This commit is contained in:
Julien Danjou 2011-11-30 14:39:05 +01:00
parent 6434611696
commit 0a3aebf683

View File

@ -37,7 +37,10 @@ setup(
packages = find_packages(),
package_data = {'horizon':
[s[len('horizon/'):] for s in
findall('horizon/templates')]},
findall('horizon/templates') \
+ findall('horizon/dashboards/nova/templates') \
+ findall('horizon/dashboards/syspanel/templates') \
+ findall('horizon/dashboards/settings/templates')]},
install_requires = ['setuptools', 'mox>=0.5.3', 'django_nose'],
classifiers = [
'Development Status :: 4 - Beta',