diff options
author | Michael Elkins <melkins@tislabs.com> | 2011-03-03 00:01:17 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2011-03-03 00:01:17 +0000 |
commit | 93328022a47ae7ac7a24b48d934ac430d99d8905 (patch) | |
tree | 14dab415f34d95304b86f4d6d9c8b4efaa7f76eb /rpkid/setup.py | |
parent | 7a37b6e2bcf3d1ffc41ac9d5b1a6ac1932132030 (diff) |
put django project templates into $top/rpkid/rpki/gui/templates
django templates should be installed as APP/templates/APP/template.html to avoid namespace clashes
svn path=/rpkid/portal-gui/Makefile.in; revision=3709
Diffstat (limited to 'rpkid/setup.py')
-rw-r--r-- | rpkid/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpkid/setup.py b/rpkid/setup.py index 6b397e45..4efe523b 100644 --- a/rpkid/setup.py +++ b/rpkid/setup.py @@ -48,7 +48,8 @@ setup(name = "rpkitoolkit", url = "http://www.rpki.net/", packages = ["rpki", "rpki.POW", "rpki.gui", "rpki.gui.app" ], ext_modules = [pow], - package_data = { 'rpki.gui.app' : [ 'templates/*.html' ] }, + package_data = {'rpki.gui' : ['templates/*.html', 'templates/registration/*.html'], + 'rpki.gui.app' : ['templates/rpkigui/*.html']}, # bdist_rpm seems to get confused by relative names for scripts, # so we have to prefix the source name of anything here with the |