reflect generated client deps in module setup

This commit is contained in:
Kenneth Bingham 2025-03-04 14:08:22 -05:00
parent a0654aa2a2
commit 2752e68f0a
No known key found for this signature in database
GPG Key ID: 31709281860130B6

View File

@ -5,15 +5,13 @@ import versioneer
# optionally upload to TestPyPi with alternative name in testing repo # optionally upload to TestPyPi with alternative name in testing repo
NAME = os.getenv('ZROK_PY_NAME', "zrok") NAME = os.getenv('ZROK_PY_NAME', "zrok")
VERSION = "1.0.0" VERSION = "1.0.0"
# To install the library, run the following REQUIRES = [
# "openziti >= 1.0.0",
# python setup.py install "urllib3 >= 2.1.0", # urllib3 2.1.0 introduced breaking changes that are implemented by openapi-generator 7.12.0
# "python_dateutil >= 2.8.2",
# prerequisite: setuptools "pydantic >= 2",
# http://pypi.python.org/pypi/setuptools "typing-extensions >= 4.7.1",
]
# 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( setup(
name=NAME, name=NAME,