]> git.ozlabs.org Git - hiprofile/blobdiff - setup.py
Use jinja2 instead of django
[hiprofile] / setup.py
index 137a3128604fb42956010495dda56f43e191ca9a..f3bd3ff5e4a5e7cc0e30becbc1b9eb855eeb63f7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,19 @@ from distutils.core import setup
 setup(name = 'hiprofile',
         version = '1.0',
         description = 'HTML interactive profile report generator',
 setup(name = 'hiprofile',
         version = '1.0',
         description = 'HTML interactive profile report generator',
+        url = 'http://ozlabs.org/~jk/projects/hiprofile/',
         author = 'Jeremy Kerr',
         author_email = 'jk@ozlabs.org',
         author = 'Jeremy Kerr',
         author_email = 'jk@ozlabs.org',
+        requires = ['jinja2'],
         py_modules = ['hiprofile'],
         py_modules = ['hiprofile'],
-        scripts = ['scripts/hiprofile'])
+        scripts = ['scripts/hiprofile'],
+        data_files = [('share/hiprofile/',
+                        ['share/hiprofile/base.html',
+                         'share/hiprofile/report.html',
+                         'share/hiprofile/binary.html',
+                         'share/hiprofile/symbol.html',
+                         'share/hiprofile/style.css',
+                         'share/hiprofile/bar.png',
+                         'share/hiprofile/hiprofile.js',
+                         'share/hiprofile/jquery-1.3.1.min.js']),
+                     ])