This repository was archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.35 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.35 KB
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
"""Add support for Sentry notifications.
"""
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(HERE, 'README.md')) as f:
LONG_DESCRIPTION = f.read()
setup(
name="backwork-notifier-sentry",
version="0.2.1",
description="Backwork plug-in for Sentry notifications.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/IBM/backwork-notifier-sentry",
author="Luiz Aoqui",
author_email="laoqui@ca.ibm.com",
license="Apache 2",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
'License :: OSI Approved :: Apache Software License',
"Topic :: Database",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities"
],
packages=find_packages(),
install_requires=[
"backwork",
"raven==6.6.0"
],
entry_points={
"backwork.notifiers": [
"sentry=sentry:SentryNotifier"
]
}
)