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