-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (32 loc) · 1.02 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
# coding=utf-8
"""This module installs the Sentry.io VSTS integration plugin"""
from setuptools import setup, find_packages
setup(
name='sentry_vsts',
version='1.0.3',
author='Casey Boyle',
author_email='boylec@live.com',
url='https://github.com/boylec/sentry-vsts',
description='A Sentry.io plugin for Visual Studio Team Services \
integration',
keywords='sentry-vsts sentry vsts visual studio team services sentry.io',
long_description=open('README.md').read(),
packages=find_packages(exclude=['tests']),
install_requires=[
'sentry>=4.6.0',
'requests>=0.12.1',
],
dependency_links=[],
license='MIT',
include_package_data=True,
entry_points={
'sentry.plugins': ['sentry_vsts=sentry_vsts.plugin:VstsPlugin']
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)