distutils setup file for PLCAPI package
authorMark Huang <mlhuang@cs.princeton.edu>
Fri, 27 Oct 2006 18:54:21 +0000 (18:54 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Fri, 27 Oct 2006 18:54:21 +0000 (18:54 +0000)
setup.py [new file with mode: 0755]

diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..560db25
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+#
+# Setup script for PLCAPI
+#
+# Mark Huang <mlhuang@cs.princeton.edu>
+# Copyright (C) 2006 The Trustees of Princeton University
+#
+# $Id: setup.py,v 1.1 2005/12/22 21:43:25 mlhuang Exp $
+#
+
+from distutils.core import setup
+
+setup(py_modules = ['ModPython'],
+      packages = ['PLC', 'PLC/Methods'],
+      data_files = [('php', ['php/plc_api.php'])])