forked from 0xZXDX/sentry-dingding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 975 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="sentry-dingding",
version='0.0.5',
author='ansheng',
author_email='ianshengme@gmail.com',
url='https://github.com/anshengme/sentry-dingding',
description='A Sentry extension which send errors stats to DingDing',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
keywords='sentry dingding',
include_package_data=True,
zip_safe=False,
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'sentry>=9.0.0',
'requests',
],
entry_points={
'sentry.plugins': [
'sentry_dingding = sentry_dingding.plugin:DingDingPlugin'
]
},
classifiers=[
'Programming Language :: Python :: 2.7',
"License :: OSI Approved :: MIT License",
]
)