-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (52 loc) · 2.07 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
56
57
58
59
60
61
62
63
# coding: utf-8
"""
IONOS Cloud - Object Storage Management API
Object Storage Management API is a RESTful API that manages the object storage service configuration for IONOS Cloud. # noqa: E501
The version of the OpenAPI document: 0.1.0
Generated by: https://openapi-generator.tech
"""
from setuptools import setup # noqa: H301
import os
import codecs
NAME = "ionoscloud-object-storage-management"
VERSION = "1.0.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
with open('requirements.txt') as f:
REQUIRES = f.read().splitlines()
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return codecs.open(os.path.join(here, *parts), 'r', 'utf-8').read()
if os.path.isfile("README.md"):
long_desc = read('README.md')
else:
long_desc = "Ionos Cloud API Client Library for Python"
setup(
name=NAME,
version=VERSION,
description="Python SDK for the ionoscloud-object-storage-management API",
author='Ionos Cloud',
author_email='[email protected]',
long_description=long_desc,
long_description_content_type='text/markdown',
url="https://github.com/ionos-cloud/sdk-python-object-storage-management",
keywords=["OpenAPI", "OpenAPI-Generator", "IONOS Cloud - Object Storage Management API"],
install_requires=REQUIRES,
packages=['ionoscloud_object_storage_management', 'ionoscloud_object_storage_management.api', 'ionoscloud_object_storage_management.models'],
include_package_data=True,
classifiers=[
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP']
)