Merge remote-tracking branch 'origin/pycurl' into planetlab-4_0-branch
[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.10 2007/10/01 20:51:46 tmack Exp $
9 #
10
11 from distutils.core import setup
12 from glob import glob
13
14 setup(py_modules = ['ModPython'],
15       packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system'],
16       scripts = ['plcsh', 'Server.py'],
17       data_files = [('', ['planetlab4.sql']),
18                     ('php', ['php/plc_api.php']),
19                     ('migrations', ['migrations/README.txt'] + glob('migrations/[0-9][0-9][0-9]*')),
20                     ])