added create_network(), delete_network(), create_subnet(), delete_subnet(), process_t...
[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
9 from distutils.core import setup
10 from glob import glob
11
12 setup(py_modules = ['ModPython'],
13       packages = ['PLC', 'PLC/Storage', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'aspects'],
14       scripts = ['plcsh', 'Server.py', 'RestServer.py', 'bootstrap.py'],
15       data_files = [
16         ('', ['config/default_config']),
17         ('php', ['php/plc_api.php']),
18         ('extensions', ['extensions/README.txt']),
19         ])