# coding: utf-8 """ AWS Docs API API for AWS Docs # noqa: E501 The version of the OpenAPI document: 1.0.0 Generated by: https://openapi-generator.tech """ from setuptools import setup, find_packages # noqa: H301 NAME = "api_python_client" VERSION = "1.0.0" # To install the library, run the following # # python setup.py install # # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools REQUIRES = [ "urllib3 >= 1.15", "certifi", "python-dateutil", "frozendict >= 2.0.3", ] setup( name=NAME, version=VERSION, description="AWS Docs API", author="OpenAPI Generator community", author_email="team@openapitools.org", url="", keywords=["OpenAPI", "OpenAPI-Generator", "AWS Docs API"], python_requires="==3.8.13", install_requires=REQUIRES, packages=find_packages(exclude=["test", "tests"]), include_package_data=True, long_description="""\ API for AWS Docs # noqa: E501 """, )