From ce8118fe75a3aca5cb6a6518fda0a1bad4a298c2 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 30 Dec 2019 03:00:18 +0100 Subject: [PATCH] [setup] force py2, bump to 0.7.4 --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9dca157..5a7ab62 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,8 @@ from setuptools import setup, find_packages CLASSIFIERS = [ - 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Players', @@ -20,7 +21,7 @@ setup( long_description=open('README.rst').read(), author="Guillaume Pellerin", author_email="yomguy@parisson.com", - version='0.7.3', + version='0.7.4', install_requires=[ 'setuptools', 'python-shout==0.2.6', @@ -38,4 +39,5 @@ setup( packages=find_packages(), include_package_data=True, zip_safe=False, + python_requires='=2', ) -- 2.47.3