-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
40 lines (30 loc) · 1022 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'qemu-affinity',
version = '1.0.0',
description = ('A tool to easily pin certain QEMU threads to select CPU cores.'),
long_description=read('README.rst'),
url = 'http://packages.python.org/an_example_pypi_project',
author = 'Adam Zegelin',
author_email = '[email protected]',
license = 'MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
],
keywords = 'qemu affinity',
py_modules=['qemu_affinity'],
entry_points={
'console_scripts': [
'qemu-affinity=qemu_affinity:main',
],
},
)