Fix the supported python version in README.md and set it to 3.9, also add some classifiers.

This commit is contained in:
OK 2023-08-11 11:03:04 +02:00
parent bc9baff0dc
commit df91ca863a
2 changed files with 9 additions and 3 deletions

View File

@ -8,7 +8,7 @@ Official repository URL: https://kaizenkodo.no/gitea/kaizenkodo/ChatMastermind.g
## Requirements ## Requirements
- Python 3.6 or higher - Python 3.9 or higher
- openai - openai
- PyYAML - PyYAML
- argcomplete - argcomplete

View File

@ -15,12 +15,18 @@ setup(
packages=find_packages(), packages=find_packages(),
classifiers=[ classifiers=[
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Text Processing",
], ],
install_requires=[ install_requires=[
"openai", "openai",
@ -28,7 +34,7 @@ setup(
"argcomplete", "argcomplete",
"pytest" "pytest"
], ],
python_requires=">=3.10", python_requires=">=3.9",
test_suite="tests", test_suite="tests",
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [