Added codemux
[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.4 2006/11/28 21:36:06 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     'api_calls',
21     'conf_files',
22     'config',
23     'curlwrapper',
24     'database',
25     'delegate',
26     'logger',
27     'net',
28     'nm',
29     'plcapi',
30     'proper',
31     'vsys',
32     'safexmlrpc',
33     'sliver_vs',
34     'sm',
35     'ticket',
36     'tools',
37     'bwmon',
38     'codemux',
39     'iptables',
40     ],
41     scripts = [
42     'forward_api_calls',
43     ],
44     )