From e01ef6f7cff62e451b7de5755438f8f572ef5345 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 28 Mar 2022 11:42:08 +0200 Subject: [PATCH] setup.py: Update setup classifiers and add python_requires for Python >=3.7 Update setup.py with the Programming Language classifiers and python_requires argument to reflect Mesa supporting Python 3.7 and higher. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index fb50a7d1829..cf07f0424cc 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,10 @@ "Topic :: Scientific/Engineering :: Artificial Intelligence", "Intended Audience :: Science/Research", "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Development Status :: 3 - Alpha", @@ -59,4 +63,5 @@ [console_scripts] mesa=mesa.main:cli """, + python_requires=">=3.7", )