Skip to content

Commit 34f2241

Browse files
v0.1
1 parent 2a9e539 commit 34f2241

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
*/__pycache__/*
2+
dist/*
3+
opsgenie/opsgenie_python_api.egg-info/*
4+
opsgenie_python_api.egg-info/*
5+
build/*

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ This is a Opsgenie API client library to simplify the interaction with Opsgenie.
66

77
Opsgenie 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

opsgenie/__init__.py

Whitespace-only changes.

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[metadata]
2+
description-file = README.md
3+
4+
[tool:pytest]
5+
testpaths = tests

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
)

0 commit comments

Comments
 (0)