forked from getsentry/sentry-redmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.29 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
#!/usr/bin/env python
"""
sentry-redmine
==================
An extension for Sentry which integrates with Redmine. Specifically, it allows
you to easily create Redmine tickets from events within Sentry.
:copyright: (c) 2015 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
install_requires = [
'sentry>=7.3.0',
]
setup(
name='sentry-redmine',
version='0.1.0',
author='Sentry Team',
author_email='[email protected]',
url='http://github.com/getsentry/sentry-redmine',
description='A Sentry extension which integrates with Redmine.',
long_description=__doc__,
license='BSD',
packages=find_packages(exclude=['tests']),
zip_safe=False,
install_requires=install_requires,
test_suite='runtests.runtests',
include_package_data=True,
entry_points={
'sentry.apps': [
'redmine = sentry_redmine',
],
'sentry.plugins': [
'redmine = sentry_redmine.plugin:RedminePlugin'
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)