Skip to content

Commit 7a5a6e4

Browse files
authored
Add proper license attribute per OSI license (#155)
* define the license so 'pip3 show' shows the license * add in classifier from aws-crt-python, change license attribute to match classifier * fix anchor name * use full string for the license attribute
1 parent 82696db commit 7a5a6e4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* [shadow](#shadow)
55
* [fleet provisioning](#fleet-provisioning)
66
* [basic discovery](#basic-discovery)
7-
* [IPC with AWS IoT Greengrass to publish to AWS IoT Core](#ipc-greengrass)
7+
* [IPC with AWS IoT Greengrass to publish to AWS IoT Core](#ipc-with-aws-iot-greengrass-to-publish-to-aws-iot-core)
88

99
## pubsub
1010
This sample uses the

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@
88
setup(
99
name='awsiotsdk',
1010
version='1.0.0-dev',
11-
license='Apache-2.0',
11+
license='License :: OSI Approved :: Apache Software License',
1212
description='AWS IoT SDK based on the AWS Common Runtime',
1313
author='AWS SDK Common Runtime Team',
1414
url='https://github.com/aws/aws-iot-device-sdk-python-v2',
1515
packages=find_packages(include=['awsiot*']),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Operating System :: OS Independent",
20+
],
1621
install_requires=[
1722
'awscrt==0.9.15',
1823
],

0 commit comments

Comments
 (0)