- add net and proper to manifest
[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.3 2006/11/27 22:42:48 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     'net',
27     'nm',
28     'plcapi',
29     'proper',
30     'safexmlrpc',
31     'sliver_vs',
32     'sm',
33     'ticket',
34     'tools',
35     ],
36     scripts = [
37     'forward_api_calls',
38     ],
39     )