-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (34 loc) · 1.36 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
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [req.strip() for req in open('requirements.pip')]
if sys.version_info[:2] <= (2, 6):
requirements = [req.strip() for req in open('requirements_py26.pip')]
exec([v for v in open('kairos/__init__.py') if '__version__' in v][0])
setup(
name='kairos',
version=__version__,
author='Aaron Westendorf',
author_email="[email protected]",
packages = ['kairos'],
install_requires = requirements,
url='https://github.com/agoragames/kairos',
license="LICENSE.txt",
description='Time series data storage in Redis, Mongo, SQL and Cassandra',
long_description=open('README.rst').read(),
keywords=['python', 'redis', 'mongo', 'sql', 'mysql', 'sqlite', 'postgresql', 'cassandra', 'time', 'timeseries', 'rrd', 'gevent', 'statistics'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Communications",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries'
]
)