-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.25 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
#!/usr/bin/env python
"""
sentry-kafka
==============
An extension for Sentry which integrates with Apache Kafka. It will forward
events to a Kafka instance for logging.
"""
from setuptools import setup, find_packages
install_requires = [
'kafka-python>=0.9.2',
'sentry>=6.0.0',
]
setup(
name='sentry-kafka',
version='1.1',
download_url='https://github.com/banno/getsentry-kafka/tarball/1.0',
author='Chad Killingsworth - Jack Henry and Associates, Inc.',
author_email='[email protected]',
url='http://github.com/banno/getsentry-kafka',
description='A Sentry extension which integrates with Apache Kafka.',
long_description=__doc__,
license='Apache-2.0',
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
entry_points={
'sentry.apps': [
'sentry_kafka = sentry_kafka ',
],
'sentry.plugins': [
'kafka = sentry_kafka.models:KafkaMessage',
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)