first stab at splitting into 2 packages nodemanager-lib and nodemanager-vs
[nodemanager.git] / setup-vs.py
diff --git a/setup-vs.py b/setup-vs.py
new file mode 100644 (file)
index 0000000..a2032dc
--- /dev/null
@@ -0,0 +1,19 @@
+#!/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=[
+        'sliver_vs',
+        ],
+    scripts = [
+        ],
+    packages =[
+        ],
+    )