From cafc946fa6fe116e3b34d5b036749d643fef8875 Mon Sep 17 00:00:00 2001 From: Johannes Ebke Date: Thu, 19 Sep 2019 23:13:32 +0200 Subject: [PATCH] Fix setup.py after reading documentation --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 456f8a3..c1fb18b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='aws_list_all', - version='0.7.0', + version='0.7.1', description='List all your AWS resources, all regions, all services.', long_description=long_description, url='https://github.com/JohannesEbke/aws_list_all', @@ -37,7 +37,5 @@ 'aws-list-all=aws_list_all.__main__:main', ], }, - package_data={ - 'aws_list_all': ['aws_list_all/endpoint_hosts.json', 'aws_list_all/service_regions.json'], - }, + include_package_data=True, )