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