PlanetStack-specific plugins
authorAndy Bavier <acb@cs.princeton.edu>
Wed, 20 Nov 2013 20:57:44 +0000 (15:57 -0500)
committerAndy Bavier <acb@cs.princeton.edu>
Wed, 20 Nov 2013 20:57:44 +0000 (15:57 -0500)
setup-planetstack.py [new file with mode: 0644]

diff --git a/setup-planetstack.py b/setup-planetstack.py
new file mode 100644 (file)
index 0000000..5bc47c2
--- /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=[
+        'plugins.planetstack-net',
+        ],
+    scripts = [
+        ],
+    packages =[
+        ],
+    )