24 lines
649 B
Python
Raw Permalink Normal View History

2020-12-07 10:42:06 +08:00
import sys
from setuptools import setup
if not (sys.version_info[0] == 3):
sys.exit("Link IoT Edge only support Python 3")
setup(
2021-01-06 18:00:55 +08:00
name='iotedge_driver_link_sdk',
2021-11-12 17:05:14 +08:00
version='0.2.0',
2020-12-07 10:42:06 +08:00
author='ucloud.cn',
2021-01-06 18:00:55 +08:00
url='https://pypi.org/project/iotedge_driver_link_sdk/',
2020-12-07 10:42:06 +08:00
author_email='joy.zhou@ucloud.cn',
2021-01-06 18:00:55 +08:00
packages=['iotedgedriverlinksdk'],
2020-12-07 10:42:06 +08:00
platforms="any",
license='Apache 2 License',
install_requires=[
"asyncio-nats-client>=0.10.0",
"cachetools>=4.0.0"
],
2021-01-06 18:01:07 +08:00
description="IoT Edge Driver Link SDK",
2020-12-07 10:42:06 +08:00
long_description="UIoT Edge Driver Link SDK\n https://www.ucloud.cn/site/product/uiot.html"
)