Setting tag nodemanager-2.0-38
[nodemanager.git] / setup-vs.py
1 #!/usr/bin/python
2 #
3 # Setup script for the Node Manager application
4 #
5 # Mark Huang <mlhuang@cs.princeton.edu>
6 # Copyright (C) 2006 The Trustees of Princeton University
7 #
8
9 from distutils.core import setup, Extension
10
11 setup(
12     py_modules=[
13         'sliver_vs',
14         ],
15     scripts = [
16         ],
17     packages =[
18         ],
19     )