- build sioc module
[nodemanager.git] / setup.py
1 #!/usr/bin/python
2 #
3 # Setup script for the Node Manager application
4 #
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 # Copyright (C) 2006 The Trustees of Princeton University
7 #
8 # $Id: setup.py,v 1.2 2006/11/15 20:02:49 mlhuang Exp $
9 #
10
11 from distutils.core import setup, Extension
12
13 setup(
14     ext_modules=[
15     Extension('sioc', ['sioc.c']),
16     ],
17     py_modules=[
18     'accounts',
19     'api',
20     'conf_files',
21     'config',
22     'curlwrapper',
23     'database',
24     'delegate',
25     'logger',
26     'nm',
27     'plcapi',
28     'safexmlrpc',
29     'sliver_vs',
30     'sm',
31     'ticket',
32     'tools',
33     ],
34     scripts = [
35     'forward_api_calls',
36     ],
37     )