first stab at splitting into 2 packages nodemanager-lib and nodemanager-vs
[nodemanager.git] / setup-lib.py
diff --git a/setup-lib.py b/setup-lib.py
new file mode 100644 (file)
index 0000000..fb7790d
--- /dev/null
@@ -0,0 +1,40 @@
+#!/usr/bin/python
+#
+# Setup script for the Node Manager application
+#
+# Mark Huang <mlhuang@cs.princeton.edu>
+# Copyright (C) 2006 The Trustees of Princeton University
+#
+
+from distutils.core import setup, Extension
+
+setup(
+    py_modules=[
+        'account',
+        'api',
+        'api_calls',
+        'bwmon',
+        'conf_files',
+        'config',
+        'controller',
+        'coresched',
+        'curlwrapper',
+        'database',
+        'initscript',
+        'iptables',
+        'logger',
+        'net',
+        'nodemanager',
+        'plcapi',
+        'safexmlrpc',
+        'slivermanager',
+        'ticket',
+        'tools',
+        ],
+    scripts = [
+        'forward_api_calls',
+        ],
+    packages =[
+        'plugins',
+        ],
+    )