]> git.ozlabs.org Git - hiprofile/blob - setup.py
Use setuptools rather than distutils
[hiprofile] / setup.py
1 #!/usr/bin/env python
2
3 from setuptools import setup
4
5 setup(name = 'hiprofile',
6         version = '1.0-rc1',
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         py_modules = ['hiprofile'],
14         scripts = ['scripts/hiprofile'],
15         data_files = [('share/hiprofile/',
16                         ['share/hiprofile/base.html',
17                          'share/hiprofile/report.html',
18                          'share/hiprofile/binary.html',
19                          'share/hiprofile/symbol.html',
20                          'share/hiprofile/style.css',
21                          'share/hiprofile/bar.png',
22                          'share/hiprofile/hiprofile.js',
23                          'share/hiprofile/jquery-1.3.1.min.js']),
24                      ])