Fix typo.
[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$
9 #
10
11 from distutils.core import setup, Extension
12
13 setup(
14     py_modules=[
15     'accounts',
16     'api',
17     'api_calls',
18     'conf_files',
19     'config',
20     'curlwrapper',
21     'database',
22     'delegate',
23     'logger',
24     'net',
25     'nm',
26     'plcapi',
27     'safexmlrpc',
28     'sliver_vs',
29     'sm',
30     'ticket',
31     'tools',
32     'bwmon',
33     'iptables',
34     ],
35     scripts = [
36     'forward_api_calls',
37     ],
38     packages = [
39     'plugins',
40     ],
41     )