-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (27 loc) · 1020 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
from setuptools import setup, find_packages
setup(
name='tourbillon-redis',
description='A tourbillon plugin for collecting metrics from Redis.',
version='0.4.2',
packages=find_packages(),
zip_safe=False,
install_requires=['redis==2.10.5'],
namespace_packages=['tourbillon'],
author='The Tourbillon Team',
author_email='tourbillonpy@gmail.com',
url='https://github.com/tourbillonpy/tourbillon-redis',
license='ASF',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Monitoring',
],
keywords='monitoring metrics agent influxdb redis',
)