From: Mark Huang Date: Fri, 27 Oct 2006 18:54:21 +0000 (+0000) Subject: distutils setup file for PLCAPI package X-Git-Tag: pycurl-7_13_1~428 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=42b15ac60b89c6bad03ebd44e2e214cc93c7f538;p=plcapi.git distutils setup file for PLCAPI package --- diff --git a/setup.py b/setup.py new file mode 100755 index 00000000..560db255 --- /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'])])