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

39 lines
1.5 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 = 'tsariounov@gmail.com',
maintainer = 'Libor Pechacek',
maintainer_email = 'lpechacek@suse.com',
url = 'https://github.com/lpechacek/cpuset',
description = 'Allows manipulation 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.',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Topic :: System :: Systems Administration',
],
scripts = ['cset'],
packages = ['cpuset', 'cpuset.commands'],
data_files = [
('share/doc/packages/cpuset', ['README', 'COPYING', 'AUTHORS', 'NEWS', 'INSTALL']),
('share/doc/packages/cpuset', glob.glob('doc/*.html')),
('share/doc/packages/cpuset', glob.glob('doc/*.txt')),
]
)