forked from L3T/sentry-dingding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.1 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.1 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
#!/usr/bin/env python
"""
sentry-dingding
==============
An extension for Sentry which integrates with DingDing. It will forwards
notifications to an dingding room.
"""
from setuptools import setup, find_packages
install_requires = [
'sentry>=6.0.0',
]
setup(
name='sentry-dingding',
version='0.1.2',
author='Zhang Yunyu',
url='https://github.com/L3T/sentry-dingding',
description='A Sentry extension which integrates with DingDing.',
long_description=__doc__,
packages=find_packages(exclude=['tests']),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
entry_points={
'sentry.apps': [
'sentry_dingding = sentry_dingding ',
],
'sentry.plugins': [
'dingding = sentry_dingding.models:DingDingMessage',
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)