This repository was archived by the owner on Aug 28, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.2 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.2 KB
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
#!/usr/bin/env python
"""
sentry-webhooks
===============
An extension for Sentry which allows creation various web hooks.
:copyright: (c) 2012 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',
]
setup(
name='sentry-webhooks',
version='0.3.1',
author='David Cramer',
author_email='dcramer@gmail.com',
url='http://github.com/getsentry/sentry-webhooks',
description='A Sentry extension which integrates web hooks.',
long_description=__doc__,
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
entry_points={
'sentry.apps': [
'webhooks = sentry_webhooks',
],
'sentry.plugins': [
'webhooks = sentry_webhooks.plugin:WebHooksPlugin'
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)