minimize deps

This commit is contained in:
Kenneth Bingham 2025-03-04 12:59:56 -05:00
parent 294397dd9c
commit a0654aa2a2
No known key found for this signature in database
GPG Key ID: 31709281860130B6
3 changed files with 5 additions and 4 deletions

View File

@ -67,6 +67,6 @@ done < sdk/python/sdk/zrok/.openapi-generator/FILES
# Delete the tracking file
rm -f sdk/python/sdk/zrok/.openapi-generator/FILES
# Generate and track new files
openapi-generator-cli generate -i specs/zrok.yml -o sdk/python/sdk/zrok --package-name zrok_api -g python
openapi-generator-cli generate -i specs/zrok.yml -o sdk/python/sdk/zrok --package-name zrok_api --additional-properties projectName=zrok -g python
git checkout rest_server_zrok/configure_zrok.go

View File

@ -1,4 +1,4 @@
# zrok-api
# zrok
zrok client access
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

View File

@ -12,7 +12,8 @@ VERSION = "1.0.0"
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "openziti >= 1.0.0"]
# urllib3 2.1.0 introduced breaking changes that are implemented by openapi-generator 7.12.0
REQUIRES = ["openziti >= 1.0.0", "urllib3 >= 2.1.0" ]
setup(
name=NAME,
@ -21,7 +22,7 @@ setup(
description="zrok",
author_email="",
url="",
keywords=["Swagger", "zrok"],
keywords=["zrok"],
install_requires=REQUIRES,
python_requires='>3.10.0',
packages=find_packages(),