-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
43 lines (40 loc) · 1.34 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
#!/usr/bin/env python
from setuptools import setup
import cgroupspy
try:
with open('README.md') as file:
long_description = file.read()
except IOError:
long_description = ""
setup(
name='cgroupspy',
version=cgroupspy.__version__,
packages=['cgroupspy'],
tests_require=['mock', 'nose2'],
author='CloudSigma AG',
author_email='[email protected]',
maintainer='Miguel Trujillo',
maintainer_email='[email protected]',
url='https://github.com/cloudsigma/cgroupspy',
keywords=[
'cgroups',
],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License"
],
license='New BSD',
description="Python library for managing cgroups",
long_description=long_description,
long_description_content_type='text/markdown',
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
)