-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
26 lines (25 loc) · 880 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
from setuptools import setup
setup(
name='graphite-influxdb',
version='0.4.1',
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=open('requirements.txt').readlines(),
)