From 7b4eb6b380795d2e3455a422fc4f8e3ee406fab5 Mon Sep 17 00:00:00 2001 From: JarnoRFB Date: Tue, 2 Apr 2019 20:18:51 +0200 Subject: [PATCH] Add 3.5 to setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fcd6dc5..f44f866 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ import os import versioneer - _here = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(_here, 'README.rst'), encoding='utf-8') as f: @@ -19,6 +18,7 @@ url='https://github.com/JarnoRFB/incense', license='MIT', packages=['incense'], + python_requires='>=3.5', install_requires=[ 'sacred', 'matplotlib>=3', @@ -31,6 +31,7 @@ classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research', + 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7' ],