forked from edin1/graphite-query
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.32 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.32 KB
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
33
34
35
36
37
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
storage_dirs = []
for subdir in ('whisper', 'ceres', 'rrd', 'log', 'log/webapp'):
storage_dirs.append( ('storage/%s' % subdir, []) )
setup(
name='graphite-query',
version='0.11.3',
url='https://github.com/edin1/graphite-query',
author="edin1, based on Chris Davis's graphite-web"\
"and Bruno Renié's graphite-api",
license='Apache Software License 2.0',
description="Utilities for querying graphite's database",
install_requires=open("install_requires.txt").read().split(),
packages=find_packages(exclude=['tests']),
data_files= storage_dirs,
test_suite="tests",
tests_require=open("tests_require.txt").read().split(),
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Monitoring',
),
zip_safe=False,
)