From: Guillaume Pellerin Date: Mon, 30 Dec 2019 02:00:18 +0000 (+0100) Subject: [setup] force py2, bump to 0.7.4 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ce8118fe75a3aca5cb6a6518fda0a1bad4a298c2;p=deefuzzer.git [setup] force py2, bump to 0.7.4 --- 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', )