This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
57 lines (51 loc) · 1.41 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
#!/usr/bin/env python
"""
sentry-slack
============
An extension for `Sentry <https://getsentry.com>`_ which posts notifications
to `Slack <https://slack.com>`_.
:copyright: (c) 2015 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
install_requires = [
'sentry>=7.0.0',
]
tests_require = [
'exam',
'flake8>=2.0,<2.1',
'responses',
]
setup(
name='sentry-slack',
version='0.6.0.dev0',
author='Matt Robenolt',
author_email='[email protected]',
url='https://github.com/getsentry/sentry-slack',
description='A Sentry extension which posts notifications to Slack (https://slack.com/).',
long_description=open('README.rst').read(),
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
install_requires=install_requires,
extras_require={
'tests': tests_require,
},
include_package_data=True,
entry_points={
'sentry.apps': [
'slack = sentry_slack',
],
'sentry.plugins': [
'slack = sentry_slack.plugin:SlackPlugin',
]
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)