This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
sentry-redmine/setup.py

55 lines
1.4 KiB
Python

#!/usr/bin/env python
"""
sentry-redmine
==================
An extension for Sentry which integrates with Redmine. Specifically, it allows you to easily create
Maniphest tasks from events within Sentry.
:copyright: (c) 2011 by the Sentry Team, see AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
tests_require = [
'nose',
]
install_requires = [
'sentry>=7.3.0',
]
setup(
name='sentry-redmine',
version='0.1.0',
author='Aaditya Sood',
author_email='a@ideadevice.com',
url='http://github.com/ideadevice/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,
tests_require=tests_require,
extras_require={'test': tests_require},
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'
],
)