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)