iot-central-python-client/setup.py

36 строки
1.0 KiB
Python
Исходник Постоянная ссылка Обычный вид История

2019-11-30 18:43:00 +03:00
import setuptools
import sys
with open("README.md", "r") as fh:
long_description = fh.read()
2022-10-20 20:26:06 +03:00
version = "1.1.3"
2020-06-11 18:11:07 +03:00
2019-11-30 18:43:00 +03:00
setuptools.setup(
2020-06-11 18:37:19 +03:00
name='iotc',
2020-06-11 18:17:16 +03:00
version=version,
2020-04-22 17:54:00 +03:00
author="Luca Druda",
author_email="ludruda@microsoft.com",
2019-11-30 18:43:00 +03:00
description="Azure IoT Central device client for Python",
long_description=long_description,
long_description_content_type="text/markdown",
2020-06-17 18:52:59 +03:00
url="https://github.com/iot-for-all/iotc-python-client",
2019-11-30 18:43:00 +03:00
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
license="MIT",
platform="OS Independent",
keywords="iot,azure,iotcentral",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
2021-06-25 19:54:34 +03:00
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
2019-11-30 18:43:00 +03:00
],
include_package_data=True,
2020-06-17 19:46:47 +03:00
install_requires=["azure-iot-device"]
2019-11-30 18:43:00 +03:00
)