Skip to content

Commit

Permalink
fix: update license key in setup() to expected value by PyPi (#966)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfuss committed Jan 29, 2019
1 parent 03a4064 commit 63c5c16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.rst
description-file = README.md
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 63c5c16

Please sign in to comment.