-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.28 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
49
50
51
52
53
#!/usr/bin/env python
"""
sentry-tracpost
==============
An extension for Sentry which integrates with Trac. It will send Trac tickets over XML RPC.
:copyright: (c) 2012 by Josh Harwood.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup, find_packages
tests_require = [
'nose>=1.1.2',
]
install_requires = [
'sentry>=4.6.0',
]
setup(
name='sentry-tracpost',
version='0.3.0',
author='Josh Harwood',
author_email='[email protected]',
url='',
description='A Sentry extension which integrates with Trac',
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',
entry_points={
'sentry.plugins': [
'tracpost = sentry_tracpost.plugin:TracPost'
],
'sentry.apps': [
'tracpost = sentry_tracpost.plugin:TracPost'
],
},
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)