X-Git-Url: https://git.ozlabs.org/?p=hiprofile;a=blobdiff_plain;f=setup.py;h=923316d1be311ce9de7e62e19bc86c3968021ef1;hp=137a3128604fb42956010495dda56f43e191ca9a;hb=2f5c82640d8555d44483645d4bde3720ca0e2afb;hpb=18fd0ce3407d35a7d45854faa5101b11ed794c5b diff --git a/setup.py b/setup.py index 137a312..923316d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,18 @@ from distutils.core import setup 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', 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']), + ])