#!/usr/bin/python # # Setup script for PLCAPI # # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # # $Id: setup.py,v 1.5 2007/01/09 16:33:16 mlhuang Exp $ # from distutils.core import setup setup(py_modules = ['ModPython'], packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system'], scripts = ['plcsh', 'Server.py', 'Test.py'], data_files = [('', ['planetlab4.sql']), ('php', ['php/plc_api.php']), ('migrations', ['migrations/*.sql','migrations/README.txt'])])