From 90244ad5104c289fe0b898a5a0605e5ebe430364 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 1 May 2009 01:46:14 +0000 Subject: [PATCH] initial checkin of setup.py script --- setup.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 setup.py 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') -- 2.47.0