forked from cloudsigma/cgroupspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 998 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
#!/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', 'nose>=1.3'],
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",
"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',
)