ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.337.1

This commit is contained in:
speakeasybot
2024-07-16 21:57:03 +00:00
parent f4795d49bc
commit 83a99504c5
10 changed files with 79 additions and 17 deletions

View File

@@ -1,18 +1,28 @@
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
import setuptools
import re
try:
with open('README.md', 'r') as fh:
long_description = fh.read()
GITHUB_URL = 'https://github.com/comfy-deploy/comfy-deploy-python.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 = ''
setuptools.setup(
name='comfydeploy',
version='0.0.1',
version='0.0.2',
author='Speakeasy',
description='Python Client SDK Generated by Speakeasy',
url='https://github.com/comfy-deploy/comfy-deploy-python.git',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(where='src'),