From cd751b18daa559cea1c0c19e6d1da8a48afe9be3 Mon Sep 17 00:00:00 2001 From: rpcme Date: Mon, 15 Feb 2021 16:22:43 -0500 Subject: [PATCH 1/4] define the license so 'pip3 show' shows the license --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 7128bf01..c13a22ce 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ setup( name='awsiotsdk', version='1.0.0-dev', + license='Apache-2.0', description='AWS IoT SDK based on the AWS Common Runtime', author='AWS SDK Common Runtime Team', url='https://github.com/aws/aws-iot-device-sdk-python-v2', From e439414d7806128cf9a9248fe34571407f86ff10 Mon Sep 17 00:00:00 2001 From: rpcme Date: Tue, 16 Feb 2021 20:23:58 -0500 Subject: [PATCH 2/4] add in classifier from aws-crt-python, change license attribute to match classifier --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c13a22ce..d9034e12 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,16 @@ setup( name='awsiotsdk', version='1.0.0-dev', - license='Apache-2.0', + license='Apache Software License', description='AWS IoT SDK based on the AWS Common Runtime', author='AWS SDK Common Runtime Team', url='https://github.com/aws/aws-iot-device-sdk-python-v2', packages=find_packages(include=['awsiot*']), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: Apache Software License", + "Operating System :: OS Independent", + ], install_requires=[ 'awscrt==0.9.15', ], From b1ed64ae1feee580afcc2e7fb75176dfc1cde181 Mon Sep 17 00:00:00 2001 From: rpcme Date: Wed, 17 Feb 2021 06:04:34 -0500 Subject: [PATCH 3/4] fix anchor name --- samples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/README.md b/samples/README.md index a69bd762..cd050962 100644 --- a/samples/README.md +++ b/samples/README.md @@ -4,7 +4,7 @@ * [shadow](#shadow) * [fleet provisioning](#fleet-provisioning) * [basic discovery](#basic-discovery) -* [IPC with AWS IoT Greengrass to publish to AWS IoT Core](#ipc-greengrass) +* [IPC with AWS IoT Greengrass to publish to AWS IoT Core](#ipc-with-aws-iot-greengrass-to-publish-to-aws-iot-core) ## pubsub This sample uses the From 0eda01e4e4eee74fd2a439e8f8b6bafd15d38211 Mon Sep 17 00:00:00 2001 From: rpcme Date: Wed, 17 Feb 2021 17:16:30 -0500 Subject: [PATCH 4/4] use full string for the license attribute --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d9034e12..ae2393de 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='awsiotsdk', version='1.0.0-dev', - license='Apache Software License', + license='License :: OSI Approved :: Apache Software License', description='AWS IoT SDK based on the AWS Common Runtime', author='AWS SDK Common Runtime Team', url='https://github.com/aws/aws-iot-device-sdk-python-v2',