run node tests
[tests.git] / qaapi / 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 5574 2007-10-25 20:33:17Z thierry $
9 #
10
11 import os
12 from distutils.core import setup
13 from glob import glob
14
15 path = os.getcwd()
16 name = 'qa'
17 path = path+os.sep+name
18 pkgs = [path]
19
20 iterator = os.walk(path)
21 for (root, dirs, files) in iterator:
22     pkgs.extend([root+os.sep+d for d in dirs])                  
23
24 print pkgs 
25 setup(name = name,
26       packages = pkgs,
27       scripts = ['qash']
28                     )