forked from sentry-extensions/cyclops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (64 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from cyclops import __version__
mysql_requires = [
'torndb==0.1',
'MySQL-python'
]
tests_require = mysql_requires + [
'nose',
'coverage',
'yanc',
'preggy',
'nose',
]
setup(
name='cyclops',
version=__version__,
description="cyclops is a high-performance gateway for sentry.",
long_description="""
cyclops is a high-performance gateway for sentry.
It keeps items in memory and dumps them at sentry in regular intervals.
""",
keywords='bug monitoring tornado',
author='Bernardo Heynemann',
author_email='[email protected]',
url='https://github.com/heynemann/cyclops',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
extras_require={
'tests': tests_require,
'mysql': mysql_requires,
},
install_requires=[
'tornado>=3.0.0',
'derpconf==0.3.3',
'pycurl==7.19.0',
'requests==1.1.0',
'ujson==1.30',
'msgpack-python==0.3.0',
'redis==2.7.2',
'redis-lock==0.2.0',
'argparse==1.2.1',
],
entry_points={
'console_scripts': [
'cyclops=cyclops.server:main',
'cyclops-init=cyclops.init:main',
'cyclops-count=cyclops.count:main',
],
}
)