From 55b5fca6fd633ab5ac92899fba9c0e5eea58869d Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Wed, 4 Apr 2018 10:21:55 +0200 Subject: [PATCH] Add python_requires to setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7178c131..7b0a5db5 100755 --- a/setup.py +++ b/setup.py @@ -126,6 +126,11 @@ def main(): license='MIT', + # See https://stackoverflow.com/a/40300957/4759433 + # -> https://www.python.org/dev/peps/pep-0345/#requires-python + # -> http://setuptools.readthedocs.io/en/latest/setuptools.html + python_requires='>=3.4', + # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ # 3 - Alpha @@ -139,7 +144,6 @@ def main(): 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6'