#! /usr/bin/env python # # setup.py # # py-rrdtool distutil setup # # Author : Hye-Shik Chang # Date : $Date: 2003/02/14 02:38:16 $ # Created : 24 May 2002 # # $Revision: 1.7 $ # # ========================================================================== # This file is part of py-rrdtool. # # py-rrdtool is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # py-rrdtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with Foobar; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # from distutils.core import setup, Extension import sys, os RRDBASE = os.environ.get('LOCALBASE', '../../src') library_dir = os.environ.get('LIBDIR', os.path.join(RRDBASE, 'lib')) include_dir = os.environ.get('INCDIR', RRDBASE) setup(name = "py-rrdtool", version = "0.2.1", description = "Python Interface to RRDTool", author = "Hye-Shik Chang", author_email = "perky@fallin.lv", license = "LGPL", url = "http://oss.oetiker.ch/rrdtool", #packages = ['rrdtool'], ext_modules = [ Extension( "rrdtoolmodule", ["rrdtoolmodule.c"], libraries=['rrd'], runtime_library_dirs=[library_dir], library_dirs=[library_dir], include_dirs=[include_dir], ) ] )