a micro-framework for handling migrations
[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.5 2007/01/09 16:33:16 mlhuang Exp $
9 #
10
11 from distutils.core import setup
12
13 setup(py_modules = ['ModPython'],
14       packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system'],
15       scripts = ['plcsh', 'Server.py', 'Test.py'],
16       data_files = [('', ['planetlab4.sql']),
17                     ('php', ['php/plc_api.php']),
18                     ('migrations', ['migrations/*.sql','migrations/README.txt'])])