-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
48 lines (35 loc) · 1.19 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
# Always prefer setuptools over distutils
from __future__ import absolute_import
from __future__ import unicode_literals
from setuptools import find_packages
from setuptools import setup
from tscached import VERSION
setup(
name='tscached',
version=VERSION,
description='Caching proxy for time series data',
long_description='Advanced caching proxy for KairosDB, using Redis as a datastore.',
url='https://github.com/zachm/tscached',
author='Zach Musgrave',
author_email='[email protected]',
license='License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'Framework :: Flask',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
],
keywords='metrics proxy caching kairosdb redis',
packages=find_packages(exclude=['tests']),
install_requires=[],
extras_requires={
'testing': ['mock', 'freezegun'],
},
entry_points={
'console_scripts': [
'readahead=tscached.readahead:start'
],
},
)