more renamings
[nodemanager.git] / setup.py
1 #!/usr/bin/python
2 #
3 # $Id$
4 # $URL$
5 #
6 # Setup script for the Node Manager application
7 #
8 # Mark Huang <mlhuang@cs.princeton.edu>
9 # Copyright (C) 2006 The Trustees of Princeton University
10 #
11 # $Id$
12 #
13
14 from distutils.core import setup, Extension
15
16 setup(
17     py_modules=[
18         'accounts',
19         'api',
20         'api_calls',
21         'bwmon',
22         'conf_files',
23         'config',
24         'controller',
25         'curlwrapper',
26         'database',
27         'iptables',
28         'logger',
29         'net',
30         'nodemanager',
31         'plcapi',
32         'safexmlrpc',
33         'sliver_vs',
34         'sm',
35         'ticket',
36         'tools',
37         ],
38     scripts = [
39         'forward_api_calls',
40         ],
41     packages =[
42         'plugins',
43         ],
44     )