-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 987 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
"""
Copyright (C) 2014 onwards University of Deusto
All rights reserved.
This software is licensed as described in the file COPYING, which
you should have received as part of this distribution.
This software consists of contributions made by many individuals,
listed below:
@author: Aitor Gómez Goiri <[email protected]>
"""
from distutils.core import setup
setup(name='rstatus',
version='0.1',
description='Python library to periodically write and read the system status in a Redis DB',
author='Aitor Gómez-Goiri',
author_email='[email protected]',
url='https://github.com/mcloudpy/rstatus',
packages=['rstatus'],
install_requires=[
'psutil==2.1.1',
'redis==2.10.3',
'pyyaml',
],
entry_points={
'console_scripts': [
'rproducer = rstatus.producer:main',
'rconsumer = rstatus.consumer:main',
],
},
)