-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (40 loc) · 1.42 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
import sys
from setuptools import find_packages, setup
PY34_PLUS = sys.version_info[0] == 3 and sys.version_info[1] >= 4
exclude = ['tourbillon.agent.agent2'
if PY34_PLUS else 'tourbillon.agent.agent']
install_requires = ['influxdb>=2.9.1', 'click==5.1']
if not PY34_PLUS:
install_requires.append('trollius==2.0')
setup(
name='tourbillon',
version='0.5',
description='A Python agent for collecting metrics and store them into'
' an InfluxDB.',
packages=find_packages(exclude=exclude),
install_requires=install_requires,
entry_points={
'console_scripts': [
'tourbillon = tourbillon.agent.cli:main'
]
},
zip_safe=False,
namespace_packages=['tourbillon'],
author='The Tourbillon Team',
author_email='tourbillonpy@gmail.com',
url='https://github.com/tourbillonpy/tourbillon-agent',
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',
)