You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cpuset/setup.py

28 lines
1.0 KiB
Python

#!/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')),
]
)