Skip to content

Commit

Permalink
More metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
martin.ferrari committed May 18, 2010
1 parent e081617 commit 79c2ffc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,22 @@
from distutils.core import setup, Extension

module1 = Extension('unshare', sources = ['unshare.c'])
longdesc = '''This simple extension provides bindings to the Linux unshare() syscall, added in kernel version 2.6.16
By using unshare(), new and interesting features of the Linux kernel can be exploited, such as:
* Creating a new network name space (CLONE_NEWNET)
* Creating a new file system mount name space (CLONE_NEWNS)
* Reverting other features shared from clone()'''

setup(
name = 'Unshare',
version = '0.1',
description = 'Python bindings for the Linux unshare() syscall',
long_description = longdesc,
author = 'Martin Ferrari',
author_email = '[email protected]',
url = 'http://code.google.com/p/python-unshare/',
license = 'GPLv2',
platforms = 'Linux',
ext_modules = [module1])

0 comments on commit 79c2ffc

Please sign in to comment.