|
| 1 | +# For test deployment with package AWSIoTPythonSDK. The package name has already taken. Therefore we used an |
| 2 | +# alternative name for test pypi. |
| 3 | +# prod_pypi : AWSIoTPythonSDK |
| 4 | +# test_pypi : AWSIoTPythonSDK-V1 |
| 5 | +import sys |
| 6 | +sys.path.insert(0, 'AWSIoTPythonSDK') |
| 7 | +import AWSIoTPythonSDK |
| 8 | +currentVersion = AWSIoTPythonSDK.__version__ |
| 9 | + |
| 10 | +from distutils.core import setup |
| 11 | +setup( |
| 12 | + name = 'AWSIoTPythonSDK-V1', |
| 13 | + packages=['AWSIoTPythonSDK', 'AWSIoTPythonSDK.core', |
| 14 | + 'AWSIoTPythonSDK.core.util', 'AWSIoTPythonSDK.core.shadow', 'AWSIoTPythonSDK.core.protocol', |
| 15 | + 'AWSIoTPythonSDK.core.jobs', |
| 16 | + 'AWSIoTPythonSDK.core.protocol.paho', 'AWSIoTPythonSDK.core.protocol.internal', |
| 17 | + 'AWSIoTPythonSDK.core.protocol.connection', 'AWSIoTPythonSDK.core.greengrass', |
| 18 | + 'AWSIoTPythonSDK.core.greengrass.discovery', 'AWSIoTPythonSDK.exception'], |
| 19 | + version = currentVersion, |
| 20 | + description = 'SDK for connecting to AWS IoT using Python.', |
| 21 | + author = 'Amazon Web Service', |
| 22 | + author_email = '', |
| 23 | + url = 'https://github.com/aws/aws-iot-device-sdk-python.git', |
| 24 | + download_url = 'https://s3.amazonaws.com/aws-iot-device-sdk-python/aws-iot-device-sdk-python-latest.zip', |
| 25 | + keywords = ['aws', 'iot', 'mqtt'], |
| 26 | + classifiers = [ |
| 27 | + "Development Status :: 5 - Production/Stable", |
| 28 | + "Intended Audience :: Developers", |
| 29 | + "Natural Language :: English", |
| 30 | + "License :: OSI Approved :: Apache Software License", |
| 31 | + "Programming Language :: Python", |
| 32 | + "Programming Language :: Python :: 2.7", |
| 33 | + "Programming Language :: Python :: 3", |
| 34 | + "Programming Language :: Python :: 3.3", |
| 35 | + "Programming Language :: Python :: 3.4", |
| 36 | + "Programming Language :: Python :: 3.5" |
| 37 | + ] |
| 38 | +) |
0 commit comments