2023-02-12 21:11:29 +08:00
"""
Echo Server API
2023-08-08 21:42:12 +09:00
Echo Server API
2023-02-12 21:11:29 +08:00
The version of the OpenAPI document: 0.1.0
Contact: team@openapitools.org
2023-03-06 21:22:43 +08:00
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
2023-08-08 21:42:12 +09:00
""" # noqa: E501
2023-02-12 21:11:29 +08:00
from setuptools import setup , find_packages # noqa: H301
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = " openapi-client "
VERSION = " 1.0.0 "
2025-03-23 11:10:32 +01:00
PYTHON_REQUIRES = " >= 3.9 "
2023-02-12 21:11:29 +08:00
REQUIRES = [
2025-03-17 11:26:57 +01:00
" urllib3 >= 2.1.0, < 3.0.0 " ,
2024-10-03 08:09:39 +02:00
" python-dateutil >= 2.8.2 " ,
2023-09-28 13:13:14 +02:00
" pydantic >= 2 " ,
" typing-extensions >= 4.7.1 " ,
2023-02-12 21:11:29 +08:00
]
setup (
name = NAME ,
version = VERSION ,
description = " Echo Server API " ,
author = " OpenAPI Generator community " ,
author_email = " team@openapitools.org " ,
url = " " ,
keywords = [ " OpenAPI " , " OpenAPI-Generator " , " Echo Server API " ] ,
install_requires = REQUIRES ,
packages = find_packages ( exclude = [ " test " , " tests " ] ) ,
include_package_data = True ,
license = " Apache 2.0 " ,
long_description_content_type = ' text/markdown ' ,
long_description = """ \
2023-08-08 21:42:12 +09:00
Echo Server API
""" , # noqa: E501
2023-06-10 21:48:54 +08:00
package_data = { " openapi_client " : [ " py.typed " ] } ,
2026-02-10 16:42:05 +08:00
)