From 17cbaeaf21e454dd850a0850bb74ea6ca9e93050 Mon Sep 17 00:00:00 2001 From: Brooke White Date: Thu, 5 Nov 2020 09:22:50 -0800 Subject: [PATCH] chore: Add license, usage files and include in whl --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ff227bb..2a5f79c 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ def get_tag(self): author="Amazon Web Services", author_email="redshift-drivers@amazon.com", url="https://github.com/aws/amazon-redshift-python-driver", - license="BSD", + license="Apache License 2.0", python_requires=">=3.5", install_requires=[ "scramp>=1.2.0<1.3.0", @@ -125,7 +125,7 @@ def get_tag(self): ], keywords="redshift dbapi", include_package_data=True, - package_data={"redshift-connector": ["*.py", "*.crt", "LICENSE"]}, + package_data={"redshift-connector": ["*.py", "*.crt", "LICENSE", "NOTICE"]}, packages=find_packages(exclude=["test*"]), cmdclass={ "install": InstallCommand,