forked from evilbs/sentry-dingtalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (48 loc) · 1.47 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
sentry-Dingtalk
==============
An extension for Sentry which integrates with Dingtalk. It will send
notifications to dingtalk robot.
:copyright: (c) 2017 by guoyong yi, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
# See http://stackoverflow.com/questions/9352656/python-assertionerror-when-running-nose-tests-with-coverage
# for why we need to do this.
from multiprocessing import util
tests_require = [
]
install_requires = [
'sentry>=5.4.1',
]
setup(
name='sentry-dingtalk',
version='1.1.3',
author='guoyong yi',
author_email='guoyongyi11@gmail.com',
url='https://github.com/gzhappysky/sentry-dingtalk',
description='A Sentry extension which integrates with Dinttalk robot.',
long_description=__doc__,
license='BSD',
packages=find_packages(exclude=['tests']),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='nose.collector',
entry_points={
'sentry.plugins': [
'dingtalk = sentry_dingtalk.plugin:DingtalkPlugin'
],
},
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)