-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1011 Bytes
/
setup.py
File metadata and controls
37 lines (33 loc) · 1011 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = []
f = open('README.rst')
readme = f.read()
f.close()
setup(
name='sentry-pagerduty',
version='0.0.1',
author='Depop developers',
author_email='dev@depop.com',
url='https://github.com/depop/sentry-pagerduty',
description='A Sentry plugin for sending error occurrences to a PagerDuty instance.',
long_description=readme,
packages=find_packages(),
install_requires=install_requires,
entry_points={
'sentry.plugins': [
'sentry_pagerduty = sentry_pagerduty.plugin:PagerDutyPlugin'
],
},
include_package_data=True,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Software Development'
],
keywords='sentry pagerduty',
)