From df91ca863a6c5e7a9311cd8005fd97035e9e192a Mon Sep 17 00:00:00 2001 From: Oleksandr Kozachuk Date: Fri, 11 Aug 2023 11:03:04 +0200 Subject: [PATCH] Fix the supported python version in README.md and set it to 3.9, also add some classifiers. --- README.md | 2 +- setup.py | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7db5ea4..4ff5d97 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Official repository URL: https://kaizenkodo.no/gitea/kaizenkodo/ChatMastermind.g ## Requirements -- Python 3.6 or higher +- Python 3.9 or higher - openai - PyYAML - argcomplete diff --git a/setup.py b/setup.py index 252f277..02d9ab1 100644 --- a/setup.py +++ b/setup.py @@ -15,12 +15,18 @@ setup( packages=find_packages(), classifiers=[ "Development Status :: 3 - Alpha", + "Environment :: Console", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", + "Intended Audience :: End Users/Desktop", + "Intended Audience :: Science/Research", "Operating System :: OS Independent", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Utilities", + "Topic :: Text Processing", ], install_requires=[ "openai", @@ -28,7 +34,7 @@ setup( "argcomplete", "pytest" ], - python_requires=">=3.10", + python_requires=">=3.9", test_suite="tests", entry_points={ "console_scripts": [