install for sytemd *or* init
[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 # vserver-specific stuff
12 setup(
13     py_modules=[
14         'sliver_vs',
15         'coresched_vs',
16         # this plugin uses vserver for now
17         'plugins.drl',
18         ],
19     scripts = [
20         ],
21     packages =[
22         ],
23     )