-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (39 loc) · 1.2 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# install_requires = [
# 'sentry>=6.0.1,<6.4',
# ]
install_requires = ['sentry>=6.0.1,<6.5']
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
setup(
name='sentry-comments',
version='0.3.0-dev',
author='Andi Albrecht',
author_email='[email protected]',
url='https://github.com/andialbrecht/sentry-comments',
description='A Sentry extension to add comments to sentry events.',
long_description=LONG_DESCRIPTION,
license='BSD',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'sentry.apps': [
'sentry_comments = sentry_comments',
],
'sentry.plugins': [
'sentry_comments = sentry_comments.plugin:CommentsPlugin'
],
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Software Development'
],
)