-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
55 lines (45 loc) · 1.62 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
54
55
# coding: utf-8
"""
Python SDK for Opsgenie REST API
Python SDK for Opsgenie REST API # noqa: E501
The version of the OpenAPI document: 2.0.0
Contact: support@opsgenie.com
Generated by: https://openapi-generator.tech
"""
import os
from setuptools import setup, find_packages # noqa: H301
NAME = "opsgenie-sdk"
VERSION = "2.1.5"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.26.5", "six >= 1.10", "certifi", "python-dateutil", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=NAME,
version=VERSION,
author="OpsGenie",
author_email="support@opsgenie.com",
description="Python SDK for Opsgenie REST API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/opsgenie/opsgenie-python-sdk",
packages=find_packages(exclude=['samples']),
keywords=["OpenAPI", "OpenAPI-Generator", "Python SDK for Opsgenie REST API", "OpsGenie", "Opsgenie"],
install_requires=REQUIRES,
include_package_data=True,
project_urls={
'Documentation': 'https://docs.opsgenie.com/docs/opsgenie-python-api',
'Source': 'https://github.com/opsgenie/opsgenie-python-sdk',
'Tracker': 'https://github.com/opsgenie/opsgenie-python-sdk/issues',
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
]
)