-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 888 Bytes
/
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
#!/usr/bin/env python
"""
sentry-IM
===============
An extension for Sentry which allows notification to instant messaging service
:copyright: (c) 2016 by the Engineering Effetive Team, TNE
:license: property
"""
from setuptools import setup
install_requires = [
# 'sentry>=7.0.0',
]
setup(
name='sentry-IM',
version='0.2.1',
author='REN Xiaolei',
author_email='[email protected]',
description='A Sentry extension which integrates IM.',
long_description=__doc__,
license='property',
packages=['sentry_IM'],
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
entry_points={
'sentry.plugins': [
'sentry_daxiang= sentry_IM.plugin:IMPlugin'
],
},
classifiers=[
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
],
)