-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
31 lines (30 loc) · 927 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
# coding: utf-8
from setuptools import setup
setup(
name='cyanite',
version='0.4.6',
url='https://github.com/brutasse/graphite-cyanite',
license='BSD',
author=u'Bruno Renié',
author_email='[email protected]',
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',
),
test_suite='tests',
)