tweak privatebridge to remove exception message when ovs is not installed - prints...
[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
9 from distutils.core import setup
10
11 setup(
12     py_modules=[
13         'account',
14         'api',
15         'api_calls',
16         'bwmon',
17         'conf_files',
18         'config',
19         'controller',
20         'curlwrapper',
21         'database',
22         'initscript',
23         'iptables',
24         'logger',
25         'net',
26         'nodemanager',
27         'plcapi',
28         'safexmlrpc',
29         'slivermanager',
30         'ticket',
31         'tools',
32         'plugins.codemux',
33         'plugins.hostmap',
34         'plugins.interfaces',
35         'plugins.omf_resctl',
36         'plugins.privatebridge',
37         'plugins.rawdisk',
38         'plugins.reservation',
39         'plugins.sfagids',
40         'plugins.sliverauth',
41         'plugins.specialaccounts',
42         'plugins.syndicate',
43         'plugins.vsys',
44         'plugins.vsys_privs',
45 # lxc
46         'sliver_libvirt',
47         'sliver_lxc',
48         'cgroups',
49         'coresched_lxc',
50 # vs
51         'sliver_vs',
52         'coresched_vs',
53         # this plugin uses vserver for now
54         'plugins.drl',
55         ],
56     scripts = [
57         'forward_api_calls',
58         ],
59     packages =[
60         ],
61     )