#!/usr/bin/env python import glob from distutils.core import setup from cpuset.version import version setup(name = 'cpuset', version = version, license = 'GPLv2', author = 'Alex Tsariounov', author_email = 'alext@novell.com', url = 'http://developer.novell.com/wiki/index.php/Cpuset', description = 'Allows manipluation of cpusets and provides higher level functions.', long_description = \ 'Cpuset is a Python application to make using the cpusets facilities in the Linux\n' 'kernel easier. The actual included command is called cset and it allows\n' 'manipulation of cpusets on the system and provides higher level functions such as\n' 'implementation and control of a basic cpu shielding setup.', scripts = ['cset'], packages = ['cpuset', 'cpuset.commands'], data_files = [ ('share/doc/packages/cpuset', ['README', 'COPYING']), ('share/doc/packages/cpuset', glob.glob('doc/*.html')), ('share/doc/packages/cpuset', glob.glob('doc/*.txt')), ] )