-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·69 lines (66 loc) · 2.8 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# coding: UTF-8
from setuptools import find_packages, setup
with open('README.md') as fp:
readme = fp.read()
setup(
name='libcgroup_bind',
version='1.0.7',
author='Byeonghoon Yoo',
author_email='[email protected]',
description='Python binding for libcgroup',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/isac322/python-libcgroup_bind',
packages=find_packages(exclude=('test',)),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Stackless',
'Topic :: Software Development',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System',
'Topic :: System :: Filesystems',
'Topic :: System :: Operating System',
'Topic :: System :: Operating System Kernels',
'Topic :: System :: Operating System Kernels :: Linux',
'Typing :: Typed',
],
license='LGPLv3+',
keywords='Linux cgroup libcgroup control group binding',
python_requires='>=2.6',
provides=['libcgroup_bind'],
platforms='Linux',
install_requires=[
'enum34;python_version<"3.4"'
],
extras_require={
'stub': ['typing']
},
package_data={
'libcgroup_bind': ['*.pyi'],
}
)