ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.235.2

This commit is contained in:
speakeasybot
2024-04-04 01:14:15 +00:00
parent 3f1271d2df
commit 63685ae322
5 changed files with 39 additions and 20 deletions

View File

@@ -1,22 +1,31 @@
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
import setuptools
import re
try:
with open("README.md", "r") as fh:
with open('README.md', 'r') as fh:
long_description = fh.read()
GITHUB_URL = 'https://github.com/LukeHagar/plexpy.git'
GITHUB_URL = GITHUB_URL[: -len('.git')] if GITHUB_URL.endswith('.git') else GITHUB_URL
# links on PyPI should have absolute URLs
long_description = re.sub(
r'(\[[^\]]+\]\()((?!https?:)[^\)]+)(\))',
lambda m: m.group(1) + GITHUB_URL + '/blob/master/' + m.group(2) + m.group(3),
long_description,
)
except FileNotFoundError:
long_description = ""
long_description = ''
setuptools.setup(
name="plex-api-client",
version="0.6.0",
author="LukeHagar",
description="Python Client SDK Generated by Speakeasy",
url="https://github.com/LukeHagar/plexpy.git",
name='plex-api-client',
version='0.6.1',
author='LukeHagar',
description='Python Client SDK Generated by Speakeasy',
url='https://github.com/LukeHagar/plexpy.git',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(where="src"),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(where='src'),
install_requires=[
"certifi>=2023.7.22",
"charset-normalizer>=3.2.0",
@@ -40,5 +49,5 @@ setuptools.setup(
},
package_dir={'': 'src'},
python_requires='>=3.8',
package_data={"plex-api-client": ["py.typed"]},
package_data={'plex-api-client': ['py.typed']},
)