|
| 1 | +#!/usr/bin/env python |
| 2 | + |
| 3 | +# ------------------------------------------------------------------------- |
| 4 | +# Copyright (c) Microsoft Corporation. All rights reserved. |
| 5 | +# Licensed under the MIT License. See License.txt in the project root for |
| 6 | +# license information. |
| 7 | +# -------------------------------------------------------------------------- |
| 8 | + |
| 9 | +from setuptools import setup |
| 10 | + |
| 11 | +setup( |
| 12 | + name='azure-iot-nspkg', |
| 13 | + version='1.0.0', |
| 14 | + description='Microsoft Azure IoT Namespace Package [Internal]', |
| 15 | + long_description=open('README.md', 'r').read(), |
| 16 | + license='MIT License', |
| 17 | + author='Microsoft Corporation', |
| 18 | + |
| 19 | + url='https://github.com/Azure/azure-sdk-for-python/', |
| 20 | + classifiers=[ |
| 21 | + 'Development Status :: 5 - Production/Stable', |
| 22 | + 'Programming Language :: Python', |
| 23 | + 'Programming Language :: Python :: 2', |
| 24 | + 'Programming Language :: Python :: 2.7', |
| 25 | + 'Programming Language :: Python :: 3', |
| 26 | + 'Programming Language :: Python :: 3.5', |
| 27 | + 'Programming Language :: Python :: 3.6', |
| 28 | + 'Programming Language :: Python :: 3.7', |
| 29 | + 'Programming Language :: Python :: 3.8', |
| 30 | + 'Programming Language :: Python :: 3.9', |
| 31 | + 'License :: OSI Approved :: MIT License', |
| 32 | + ], |
| 33 | + zip_safe=False, |
| 34 | + packages=[ |
| 35 | + 'azure.iot', |
| 36 | + ], |
| 37 | + install_requires=[ |
| 38 | + 'azure-nspkg>=2.0.0', |
| 39 | + ] |
| 40 | +) |
0 commit comments