forked from brutasse/graphite-cyanite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 943 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
30
31
32
# coding: utf-8
from setuptools import setup
setup(
name='cyanite',
version='0.4.7',
url='https://github.com/coupang/graphite-cyanite',
license='BSD',
author=u'Bruno Renié',
author_email='bruno@renie.fr',
description=('A plugin for using graphite-web with the cassandra-based '
'Cyanite storage backend'),
long_description=open('README.rst').read(),
py_modules=('cyanite',),
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=(
'requests',
'pylru',
),
test_suite='tests',
)