-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f04ae6
commit e475bb5
Showing
1 changed file
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
Sematext Cloud API | ||
API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`. # noqa: E501 | ||
OpenAPI spec version: v3 | ||
Sematext Cloud API Python Client | ||
Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
""" | ||
|
||
|
||
from setuptools import setup, find_packages # mypy: disable=W0611 # noqa: | ||
|
||
NAME = "sematext-api-client-python" | ||
VERSION = "0.1.0" | ||
NAME = "sematext-cloud-client" | ||
VERSION = "0.1.3" | ||
# To install the library, run the following | ||
# | ||
# python setup.py install | ||
|
@@ -35,12 +31,12 @@ | |
|
||
|
||
setup( | ||
name="sematext-api-client-python", | ||
name="sematext-cloud-client", | ||
version=VERSION, | ||
description="Sematext Cloud API", | ||
author_email="[email protected] ", | ||
url="https://github.com/sematext/sematext-api-client-python", | ||
keywords=["Sematext", "Cloud", "API"], | ||
keywords=["Sematext", "Cloud", "API", "Monitoring", "Logging", "Metrics"], | ||
install_requires=REQUIRES, | ||
packages=find_packages(), | ||
include_package_data=True, | ||
|