From: Tony Mack Date: Fri, 1 May 2009 01:46:14 +0000 (+0000) Subject: initial checkin of setup.py script X-Git-Tag: sfa-0.9-0@14641~431 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=90244ad5104c289fe0b898a5a0605e5ebe430364;p=sfa.git initial checkin of setup.py script --- diff --git a/setup.py b/setup.py new file mode 100755 index 00000000..fa07aef6 --- /dev/null +++ b/setup.py @@ -0,0 +1,30 @@ +#!/usr/bin/python + +""" +Installation script for the geniwrapper module +""" + +from distutils.core import setup, Extension +import os, sys + +version = '0.2' +scripts = ['geni/gimport.py', 'geni/plc.py', 'cmdline/sfi.py'] +package_dirs = ['geni', 'geni/util', 'geni/methods'] +data_files = [('/etc/geni/', ['geni/aggregates.xml', 'geni/registries.xml', 'geni/util/geni_config'])] + + +setup(name='geniwrapper', + version = version, + packages = package_dirs, + data_files = data_files, + ext_modules = [], + py_modules = [], + scripts = scripts, + url = 'http://svn.planet-lab.org/svn/geniwrapper/', + description = "Geni api", + long_description = """\ +Geniwrapper implements the Geni interface which serves +as a layer between the existing PlanetLab interfaces +and the Geni API. + """, + license = 'GPL')