|
13 | 13 | if __name__ == "__main__": # Only run setup if this is the main file (allows this file to be imported for __version__) |
14 | 14 | setup( |
15 | 15 | name="aicodebot", |
16 | | - python_requires=">=3.9", |
| 16 | + python_requires=">=3.10", |
17 | 17 | version=version, |
18 | 18 | url="https://github.com/gorillamania/AICodeBot", |
19 | 19 | author="Nick Sullivan", |
20 | 20 | description="AI-powered tool for developers, simplifying coding tasks and improving workflow efficiency.", |
21 | 21 | long_description=long_description, |
22 | 22 | long_description_content_type="text/markdown", |
23 | | - keywords="AI, coding, assistant, pair-programming, automation", |
| 23 | + keywords="AI, coding, assistant, pair-programming, automation, productivity, workflow, artificial intelligence", |
24 | 24 | install_requires=requirements, |
25 | 25 | entry_points={ |
26 | 26 | "console_scripts": [ |
|
31 | 31 | "aicodebot": ["prompts/*.yaml", ".aicodebot.template"], |
32 | 32 | }, |
33 | 33 | classifiers=[ |
34 | | - "Development Status :: 3 - Alpha", |
| 34 | + "Development Status :: 4 - Beta", |
35 | 35 | "Intended Audience :: Developers", |
36 | 36 | "License :: OSI Approved :: GNU Affero General Public License v3", |
37 | 37 | "Programming Language :: Python :: 3", |
38 | | - "Programming Language :: Python :: 3.9", |
39 | 38 | "Programming Language :: Python :: 3.10", |
40 | 39 | "Programming Language :: Python :: 3.11", |
41 | 40 | ], |
|
0 commit comments