From 15bbeb4bdf214cccf387d8d2ff4f219bf9d3fdef Mon Sep 17 00:00:00 2001 From: Andy Bavier Date: Wed, 20 Nov 2013 15:57:44 -0500 Subject: [PATCH] PlanetStack-specific plugins --- setup-planetstack.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup-planetstack.py diff --git a/setup-planetstack.py b/setup-planetstack.py new file mode 100644 index 0000000..5bc47c2 --- /dev/null +++ b/setup-planetstack.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# +# Setup script for the Node Manager application +# +# Mark Huang +# Copyright (C) 2006 The Trustees of Princeton University +# + +from distutils.core import setup, Extension + +setup( + py_modules=[ + 'plugins.planetstack-net', + ], + scripts = [ + ], + packages =[ + ], + ) -- 2.43.0