From dd7b86539cec23db56d9b2daa8ad9cfe69eae705 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Mon, 2 Mar 2009 16:10:16 +1100 Subject: [PATCH] Add url and data_files to setup.py Signed-off-by: Jeremy Kerr --- setup.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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']), + ]) -- 2.39.2