mirror of
https://github.com/LukeHagar/comfy-deploy-python.git
synced 2025-12-06 12:27:45 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.337.1
This commit is contained in:
12
setup.py
12
setup.py
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user