forked from vimeo/graphite-influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 887 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
# coding: utf-8
from setuptools import setup
setup(
name='graphite-influxdb',
version='0.1.3',
url='https://github.com/vimeo/graphite-influxdb',
license='apache2',
author='Dieter Plaetinck',
author_email='[email protected]',
description=('Influxdb backend plugin for graphite-web and graphite-api'),
long_description=open('README.rst').read(),
py_modules=('graphite_influxdb',),
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=(
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: System :: Monitoring',
),
install_requires=(
'influxdb',
),
)