Bump tag level
[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         ],
18     scripts = [
19         ],
20     packages =[
21         ],
22     )