-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (35 loc) · 1.48 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
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('torus/__init__.py') if '__version__' in v][0])
setup(
name='torus',
version=__version__,
author='Aaron Westendorf',
author_email="aaron@agoragames.com",
packages = ['torus'],
install_requires = requirements,
url='https://github.com/agoragames/torus',
license="LICENSE.txt",
description='Carbon and Graphite replacement using Kairos for timeseries storage',
long_description=open('README.rst').read(),
keywords=['python', 'redis', 'mongo', 'sql', 'mysql', 'sqlite', 'postgresql', 'cassandra', 'time', 'timeseries', 'gevent', 'graphite', 'carbon', 'rrd', 'statistics'],
scripts=['bin/karbon', 'bin/torus', 'bin/schema_debug', 'bin/migrate', 'bin/schema_test'],
classifiers=[
'Development Status :: 4 - Beta',
'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'
]
)