From 657b410f969aad30ca4d36e4a8bc0d44d09883f1 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 25 Sep 2018 13:08:03 -0400 Subject: [PATCH] Use list instead of tuple for classifiers in setup.py Signed-off-by: Stephen Gallagher --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aa6a7a6..3dab5e1 100644 --- a/setup.py +++ b/setup.py @@ -39,10 +39,10 @@ 'console_scripts': [ 'ModulemdTranslationHelpers=ModulemdTranslationHelpers.cli:cli'], }, - classifiers=( + classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: POSIX :: Linux", - ), + ], include_package_data=True, )