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' ],