Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 533b588

Browse files
committed
update package name
1 parent a5e922a commit 533b588

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

continuous-delivery/test_prod_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ phases:
1919
- echo Build started on `date`
2020
- cd aws-iot-device-sdk-python
2121
- CURRENT_TAG_VERSION=$(git describe --tags | cut -f2 -dv)
22-
- python3 continuous-delivery/pip-install-with-retry.py --no-cache-dir --user awsiotsdk==$CURRENT_TAG_VERSION
22+
- python3 continuous-delivery/pip-install-with-retry.py --no-cache-dir --user AWSIoTPythonSDK==$CURRENT_TAG_VERSION
2323
- python3 samples/greengrass/basicDiscovery.py -e ${ENDPOINT} -c /tmp/certificate.pem -k /tmp/privatekey.pem -r /tmp/AmazonRootCA1.pem -n aws-sdk-crt-unit-test
2424

2525
post_build:

setup_test.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import sys
2+
sys.path.insert(0, 'AWSIoTPythonSDK')
3+
import AWSIoTPythonSDK
4+
currentVersion = AWSIoTPythonSDK.__version__
5+
6+
from distutils.core import setup
7+
setup(
8+
name = 'AWSIoTPythonSDK-V1',
9+
packages=['AWSIoTPythonSDK', 'AWSIoTPythonSDK.core',
10+
'AWSIoTPythonSDK.core.util', 'AWSIoTPythonSDK.core.shadow', 'AWSIoTPythonSDK.core.protocol',
11+
'AWSIoTPythonSDK.core.jobs',
12+
'AWSIoTPythonSDK.core.protocol.paho', 'AWSIoTPythonSDK.core.protocol.internal',
13+
'AWSIoTPythonSDK.core.protocol.connection', 'AWSIoTPythonSDK.core.greengrass',
14+
'AWSIoTPythonSDK.core.greengrass.discovery', 'AWSIoTPythonSDK.exception'],
15+
version = currentVersion,
16+
description = 'SDK for connecting to AWS IoT using Python.',
17+
author = 'Amazon Web Service',
18+
author_email = '',
19+
url = 'https://github.com/aws/aws-iot-device-sdk-python.git',
20+
download_url = 'https://s3.amazonaws.com/aws-iot-device-sdk-python/aws-iot-device-sdk-python-latest.zip',
21+
keywords = ['aws', 'iot', 'mqtt'],
22+
classifiers = [
23+
"Development Status :: 5 - Production/Stable",
24+
"Intended Audience :: Developers",
25+
"Natural Language :: English",
26+
"License :: OSI Approved :: Apache Software License",
27+
"Programming Language :: Python",
28+
"Programming Language :: Python :: 2.7",
29+
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.3",
31+
"Programming Language :: Python :: 3.4",
32+
"Programming Language :: Python :: 3.5"
33+
]
34+
)

0 commit comments

Comments
 (0)