From 42b15ac60b89c6bad03ebd44e2e214cc93c7f538 Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Fri, 27 Oct 2006 18:54:21 +0000 Subject: [PATCH] distutils setup file for PLCAPI package --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..560db25 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +#!/usr/bin/python +# +# Setup script for PLCAPI +# +# Mark Huang +# 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'])]) -- 2.43.0