mirror of
https://github.com/openziti/zrok.git
synced 2025-04-05 05:08:23 +02:00
41 lines
832 B
Python
41 lines
832 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
zrok
|
|
|
|
zrok client access # noqa: E501
|
|
|
|
OpenAPI spec version: 0.3.0
|
|
|
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
"""
|
|
|
|
from setuptools import setup, find_packages # noqa: H301
|
|
|
|
NAME = "zrok_sdk"
|
|
VERSION = "1.0.0"
|
|
# To install the library, run the following
|
|
#
|
|
# python setup.py install
|
|
#
|
|
# prerequisite: setuptools
|
|
# http://pypi.python.org/pypi/setuptools
|
|
|
|
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
|
|
|
|
setup(
|
|
name=NAME,
|
|
version=VERSION,
|
|
description="zrok",
|
|
author_email="",
|
|
url="",
|
|
keywords=["Swagger", "zrok"],
|
|
install_requires=REQUIRES,
|
|
packages=["zrok", "zrok.zrok_api"],
|
|
#packages=["zrok_api"],
|
|
include_package_data=True,
|
|
long_description="""\
|
|
zrok client access # noqa: E501
|
|
"""
|
|
)
|