Change author/support to Sentry

This commit is contained in:
David Cramer 2016-03-24 12:30:37 -07:00
parent 813c824485
commit f7d7cbd102
2 changed files with 7 additions and 7 deletions

View File

@ -10,13 +10,13 @@ from .forms import RedmineOptionsForm, RedmineNewIssueForm
class RedminePlugin(IssuePlugin):
author = 'Idea Device'
author_url = 'https://github.com/ideadevice/sentry-redmine'
author = 'Sentry'
author_url = 'https://github.com/getsentry/sentry-redmine'
version = '0.1.0'
description = "Integrate Redmine issue tracking by linking a user account to a project."
resource_links = [
('Bug Tracker', 'https://github.com/ideadevice/sentry-redmine/issues'),
('Source', 'https://github.com/ideadevice/sentry-redmine'),
('Bug Tracker', 'https://github.com/getsentry/sentry-redmine/issues'),
('Source', 'https://github.com/getsentry/sentry-redmine'),
]
slug = 'redmine'

View File

@ -19,9 +19,9 @@ install_requires = [
setup(
name='sentry-redmine',
version='0.1.0',
author='Aaditya Sood',
author_email='a@ideadevice.com',
url='http://github.com/ideadevice/sentry-redmine',
author='Sentry Team',
author_email='support@getsentry.com',
url='http://github.com/getsentry/sentry-redmine',
description='A Sentry extension which integrates with Redmine.',
long_description=__doc__,
license='BSD',