-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (27 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='tourbillon-mongodb',
description='A tourbillon plugin for collecting metrics from MongoDB.',
version='0.5',
packages=find_packages(),
zip_safe=False,
install_requires=['pymongo>=2.6.3'],
namespace_packages=['tourbillon'],
author='The Tourbillon Team',
author_email='[email protected]',
url='https://github.com/tourbillonpy/tourbillon-mongodb',
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 mongodb',
)