install for sytemd *or* init
[nodemanager.git] / setup-lxc.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_libvirt',
14         'sliver_lxc',
15         'cgroups',
16         'coresched_lxc',
17 #        'plugins.privatebridge',
18         ],
19     scripts = [
20         ],
21     packages =[
22         ],
23     )