- install scripts
[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 2006/10/27 18:54:21 mlhuang Exp $
9 #
10
11 from distutils.core import setup
12
13 setup(py_modules = ['ModPython'],
14       packages = ['PLC', 'PLC/Methods'],
15       scripts = ['Shell.py', 'Server.py', 'Test.py'],
16       data_files = [('php', ['php/plc_api.php'])])