From 497c85242872791d0d2f9381477f2eaf3e9962cb Mon Sep 17 00:00:00 2001 From: Valentin Zulkower Date: Wed, 18 Apr 2018 00:20:54 +0100 Subject: [PATCH] List not tuple is required for setup.py's Category in python3 apparently --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b8770b6e2..a46a691bb 100644 --- a/setup.py +++ b/setup.py @@ -109,7 +109,7 @@ def run_tests(self): long_description=readme, url='https://zulko.github.io/moviepy/', license='MIT License', - classifiers=( + classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Natural Language :: English', @@ -126,7 +126,7 @@ def run_tests(self): 'Topic :: Multimedia :: Video', 'Topic :: Multimedia :: Video :: Capture', 'Topic :: Multimedia :: Video :: Conversion', - ), + ], keywords='video editing audio compositing ffmpeg', packages=find_packages(exclude='docs'), cmdclass=cmdclass,