Skip to content

Add proper license attribute per OSI license #155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@
setup(
name='awsiotsdk',
version='1.0.0-dev',
license='Apache-2.0',
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',
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',
],
Expand Down