-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (32 loc) · 1.19 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
"""Add support for Sentry notifications.
"""
from os import path
from setuptools import find_packages, setup
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-http-new",
version="0.1.0",
description="Backwork plug-in for HTTP notifications.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/IBM/backwork-notifier-http",
license="Apache 2",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Topic :: Database",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
],
packages=find_packages(),
install_requires=["backwork", "requests>=2.25.1"],
entry_points={"backwork.notifiers": ["http=http_request:HTTPRequestNotifier"]},
)