Setting tag lxc-userspace-2.0-0
[lxc-userspace.git] / setup.py
1 from distutils.core import setup, Extension
2  
3 module1 = Extension('setns', sources = ['setns.c'])
4  
5 setup (name = 'Setns',
6         version = '1.0',
7         description = 'Enter an lxc container',
8         ext_modules = [module1])