From e9a5180dac551c2cc63297d00b28e6a5c8afee21 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 23 Mar 2020 08:35:07 -0500 Subject: [PATCH] Add python_requires to setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aad92ec..8c7a743 100644 --- a/setup.py +++ b/setup.py @@ -180,7 +180,7 @@ setup( url=about['__url__'], maintainer=about['__maintainer__'], maintainer_email=about['__maintainer_email__'], - license='Apache 2.0', + license='Apache-2.0', classifiers=CLASSIFIERS, keywords='elastic eland pandas python', packages=find_packages(include=["eland", "eland.*"]), @@ -188,5 +188,6 @@ setup( 'elasticsearch>=7.0.5', 'pandas==0.25.3', 'matplotlib' - ] + ], + python_requires=">=3.5", )