initial checkin of setup.py script
[sfa.git] / setup.py
1 #!/usr/bin/python
2
3 """
4 Installation script for the geniwrapper module
5 """
6
7 from distutils.core import setup, Extension
8 import os, sys
9
10 version = '0.2'
11 scripts = ['geni/gimport.py', 'geni/plc.py', 'cmdline/sfi.py']
12 package_dirs = ['geni', 'geni/util', 'geni/methods']
13 data_files = [('/etc/geni/', ['geni/aggregates.xml', 'geni/registries.xml', 'geni/util/geni_config'])]
14
15
16 setup(name='geniwrapper', 
17       version = version,
18       packages = package_dirs, 
19       data_files = data_files,
20       ext_modules = [],
21       py_modules = [],
22       scripts = scripts,   
23       url = 'http://svn.planet-lab.org/svn/geniwrapper/',
24       description = "Geni api",      
25       long_description = """\
26 Geniwrapper implements the Geni interface which serves 
27 as a layer between the existing PlanetLab interfaces 
28 and the Geni API.
29                     """,
30       license = 'GPL')