]> git.ozlabs.org Git - hiprofile/blobdiff - setup.py
Hiprofile version 1.0
[hiprofile] / setup.py
index 923316d1be311ce9de7e62e19bc86c3968021ef1..a26001a3f6677d53910cdbceb259f9e653dde4b7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,22 +1,25 @@
 #!/usr/bin/env python
 
 #!/usr/bin/env python
 
-from distutils.core import setup
+from setuptools import setup
 
 setup(name = 'hiprofile',
         version = '1.0',
 
 setup(name = 'hiprofile',
         version = '1.0',
+        license = 'GPL',
         description = 'HTML interactive profile report generator',
         url = 'http://ozlabs.org/~jk/projects/hiprofile/',
         author = 'Jeremy Kerr',
         author_email = 'jk@ozlabs.org',
         description = 'HTML interactive profile report generator',
         url = 'http://ozlabs.org/~jk/projects/hiprofile/',
         author = 'Jeremy Kerr',
         author_email = 'jk@ozlabs.org',
-        py_modules = ['hiprofile'],
+        requires = ['jinja2'],
+        packages = ['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']),
-                     ])
+        package_data = {'hiprofile':
+                        ['resources/base.html',
+                         'resources/report.html',
+                         'resources/binary.html',
+                         'resources/symbol.html',
+                         'resources/style.css',
+                         'resources/bar.png',
+                         'resources/hiprofile.js',
+                         'resources/jquery-1.3.1.min.js'],
+                     }
+        )