--- projects/pystatgrab/setup.py 2004/03/20 22:43:26 1.10 +++ projects/pystatgrab/setup.py 2004/04/06 14:53:01 1.14 @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# i-scream central monitoring system +# i-scream pystatgrab # http://www.i-scream.org # Copyright (C) 2000-2004 i-scream # @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # -# $Id: setup.py,v 1.10 2004/03/20 22:43:26 tdb Exp $ +# $Id: setup.py,v 1.14 2004/04/06 14:53:01 tdb Exp $ # """Python bindings for libstatgrab.""" @@ -29,7 +29,7 @@ import sys import os # version of pystatgrab -VERSION = "0.1" +VERSION = "0.2" # required version of libstatgrab LIBSTATGRAB = "0.9" @@ -63,7 +63,7 @@ if cflags[0] != 0: sys.exit("Failed to get cflags: " + cflags[1]) if libs[0] != 0: - exit("Failed to get libs: " + libs[1]) + sys.exit("Failed to get libs: " + libs[1]) # setup information setup( name = "pystatgrab", @@ -71,7 +71,7 @@ setup( name = "pystatgrab", description = "Python bindings for libstatgrab", author = "i-scream", author_email = "dev@i-scream.org", - url = "http://www.i-scream.org/libstatgrab/", + url = "http://www.i-scream.org/pystatgrab/", license = "GNU GPL v2 or later", ext_modules=[Extension( "_statgrab",