use the SMTP library as advertised
[plcapi.git] / setup.py
index 60a4ede..e2a5931 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,33 @@
-#!/usr/bin/python
+#!/usr/bin/env python3
 #
 # Setup script for PLCAPI
 #
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: setup.py,v 1.4 2006/10/27 20:08:46 mlhuang Exp $
-#
 
-from distutils.core import setup
+from setuptools import setup
+from glob import glob
 
-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'])])
+setup(
+    name="plc_api",
+    packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors'],
+    scripts = ['plcsh', 'Server.py'],
+    data_files = [
+        ('',
+            ['planetlab5.sql']),
+        # package for mod_python and mod_wsgi, defer choice to myplc
+        ('apache',
+            ['apache/ModPython.py',
+             'apache/__init__.py',
+             'apache/plc.wsgi']),
+        ('php',
+            ['php/plc_api.php']),
+        ('migrations',
+            ['migrations/README.txt',
+             'migrations/extract-views.py']
+             + glob('migrations/[0-9][0-9][0-9]*')),
+        ('extensions',
+            ['extensions/README.txt']),
+    ]
+)