File tree Expand file tree Collapse file tree 5 files changed +41
-0
lines changed
Expand file tree Collapse file tree 5 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 11* /__pycache__ /*
2+ dist /*
3+ opsgenie /opsgenie_python_api.egg-info /*
4+ opsgenie_python_api.egg-info /*
5+ build /*
Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ This is a Opsgenie API client library to simplify the interaction with Opsgenie.
66
77Opsgenie API documentation can be found at https://docs.opsgenie.com/docs/
88
9+ ## Installation
10+
11+ Install current reelase by pip
12+
13+ ```
14+ pip install opsgenie-python-api
15+ ```
916
1017## Getting Started
1118
Original file line number Diff line number Diff line change 1+ [metadata]
2+ description-file = README.md
3+
4+ [tool:pytest]
5+ testpaths = tests
Original file line number Diff line number Diff line change 1+ import setuptools
2+
3+ with open ("README.md" , "r" ) as fh :
4+ long_description = fh .read ()
5+
6+ setuptools .setup (
7+ name = "opsgenie-python-api" ,
8+ version = "0.1" ,
9+ author = "Stanislav Ulrych" ,
10+ author_email = "stanislav.ulrych@gmail.com" ,
11+ description = "Python bindings for Opsgenie API" ,
12+ long_description = long_description ,
13+ long_description_content_type = "text/markdown" ,
14+ url = "https://github.com/stanislavulrych/opsgenie-python-api" ,
15+ packages = setuptools .find_packages (),
16+ project_urls = {
17+ "Bug Tracker" : "https://github.com/stanislavulrych/opsgenie-python-api/issues" ,
18+ },
19+ classifiers = [
20+ "Programming Language :: Python :: 3" ,
21+ "License :: OSI Approved :: Apache Software License" ,
22+ "Operating System :: OS Independent" ,
23+ ],
24+ python_requires = '>=3.6.9' ,
25+ )
You can’t perform that action at this time.
0 commit comments