From 974b1ff9d4e17747b0e91af6f4d27686a3804b15 Mon Sep 17 00:00:00 2001 From: Jacob Fuss Date: Tue, 29 Jan 2019 06:29:47 -0800 Subject: [PATCH] fix: update license key in setup() to expected value by PyPi --- setup.cfg | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 11e9ec40ee..b88034e414 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.rst \ No newline at end of file +description-file = README.md diff --git a/setup.py b/setup.py index 8d1fa26325..67f52049d3 100644 --- a/setup.py +++ b/setup.py @@ -42,11 +42,11 @@ def read_version(): author='Amazon Web Services', author_email='aws-sam-developers@amazon.com', url='https://github.com/awslabs/aws-sam-cli', - license=read('LICENSE'), + license='Apache License 2.0', packages=find_packages(exclude=('tests', 'docs')), keywords="AWS SAM CLI", # Support Python 2.7 and 3.6 or greater - python_requires=('>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*'), + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*', entry_points={ 'console_scripts': [ '{}=samcli.cli.main:cli'.format(cmd_name)