From cf4b1d7e131b1a1d32b92d39defb0bb7d61a4aaa Mon Sep 17 00:00:00 2001 From: matograine <tom.ngr@zaclys.net> Date: Thu, 23 Jan 2020 10:00:52 +0100 Subject: [PATCH] [fix][cd] #276 : wrong PyPi package build * classifiers should be a list, not a tuple --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ffbfe7b9..2b1ce648 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( license="GNU AGPLv3", packages=find_packages(), keywords="g1 duniter cryptocurrency librecurrency RTM", - classifiers=( + classifiers=[ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.5", @@ -26,7 +26,7 @@ setup( "Environment :: Console", "Intended Audience :: End Users/Desktop", "Natural Language :: English", - ), + ], install_requires=[ "Click", "duniterpy==0.54.3", -- GitLab