From: Jeremy Kerr Date: Mon, 20 Apr 2009 04:16:26 +0000 (+1000) Subject: Use setuptools rather than distutils X-Git-Url: https://git.ozlabs.org/?p=hiprofile;a=commitdiff_plain;h=ef0edffea49e8e23206ec0a657216716a82e701d Use setuptools rather than distutils Signed-off-by: Jeremy Kerr --- diff --git a/debian/control b/debian/control index 90881ce..bde27fe 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: hiprofile Priority: extra Maintainer: Jeremy Kerr XS-Python-Version: all -Build-Depends: cdbs, debhelper (>= 5.0.51), pkg-config, python-central +Build-Depends: cdbs, debhelper (>= 5.0.51), pkg-config, python-setuptools Standards-Version: 3.8.0 Section: devel Homepage: http://ozlabs.org/~jk/projects/hiprofile/ @@ -10,6 +10,6 @@ Homepage: http://ozlabs.org/~jk/projects/hiprofile/ Package: hiprofile Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-jinja2 -XB-Python-Version: all +XB-Python-Version: ${python:Versions} Description: HTML Interactive profiler hiprofile generates HTML reports from oprofile data diff --git a/setup.py b/setup.py index f3bd3ff..bc74b13 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,10 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup setup(name = 'hiprofile', - version = '1.0', + version = '1.0-rc1', + license = 'GPL', description = 'HTML interactive profile report generator', url = 'http://ozlabs.org/~jk/projects/hiprofile/', author = 'Jeremy Kerr',