-
-
Notifications
You must be signed in to change notification settings - Fork 821
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Python version requirements and dependencies (#671)
- Loading branch information
Showing
2 changed files
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ description = "A command-line productivity tool powered by large language models | |
keywords = ["shell", "gpt", "openai", "ollama", "cli", "productivity", "cheet-sheet"] | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">=3.6" | ||
requires-python = ">=3.10" | ||
authors = [{ name = "Farkhod Sadykov", email = "[email protected]" }] | ||
dynamic = ["version"] | ||
classifiers = [ | ||
|
@@ -18,22 +18,18 @@ classifiers = [ | |
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
dependencies = [ | ||
"openai >= 1.34.0, < 2.0.0", | ||
"typer >= 0.7.0, < 1.0.0", | ||
"click >= 7.1.1, < 9.0.0", | ||
"rich >= 13.1.0, < 14.0.0", | ||
"distro >= 1.8.0, < 2.0.0", | ||
"instructor >= 0.4.5, < 1.0.0", | ||
"instructor >= 1.0.0, < 2.0.0", | ||
'pyreadline3 >= 3.4.1, < 4.0.0; sys_platform == "win32"', | ||
] | ||
|
||
|