]> git.ozlabs.org Git - hiprofile/blob - setup.py
Hiprofile version 1.0
[hiprofile] / setup.py
1 #!/usr/bin/env python
2
3 from setuptools import setup
4
5 setup(name = 'hiprofile',
6         version = '1.0',
7         license = 'GPL',
8         description = 'HTML interactive profile report generator',
9         url = 'http://ozlabs.org/~jk/projects/hiprofile/',
10         author = 'Jeremy Kerr',
11         author_email = 'jk@ozlabs.org',
12         requires = ['jinja2'],
13         packages = ['hiprofile'],
14         scripts = ['scripts/hiprofile'],
15         package_data = {'hiprofile':
16                         ['resources/base.html',
17                          'resources/report.html',
18                          'resources/binary.html',
19                          'resources/symbol.html',
20                          'resources/style.css',
21                          'resources/bar.png',
22                          'resources/hiprofile.js',
23                          'resources/jquery-1.3.1.min.js'],
24                      }
25         )