distutils setup file for PLCAPI package
[plcapi.git] / setup.py
1 #!/usr/bin/python
2 #
3 # Setup script for PLCAPI
4 #
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 # Copyright (C) 2006 The Trustees of Princeton University
7 #
8 # $Id: setup.py,v 1.1 2005/12/22 21:43:25 mlhuang Exp $
9 #
10
11 from distutils.core import setup
12
13 setup(py_modules = ['ModPython'],
14       packages = ['PLC', 'PLC/Methods'],
15       data_files = [('php', ['php/plc_api.php'])])