forked from dsdanielpark/Bard-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: 0.1.5 add dependency requests
- Loading branch information
1 parent
4a50784
commit dd6a8e7
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ | |
api_key = os.environ.get("_BARD_API_KEY") | ||
|
||
__all__ = ["Bard", "api_key"] | ||
__version__ = "0.1.4" | ||
__version__ = "0.1.5" | ||
__author__ = "daniel park <[email protected]>" |
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ def get_long_description(): | |
|
||
setup( | ||
name="bardapi", | ||
version="0.1.4", | ||
version="0.1.5", | ||
author="daniel park", | ||
author_email="[email protected]", | ||
description="The python package that returns Response of Google Bard through API.", | ||
|
@@ -34,7 +34,7 @@ def get_long_description(): | |
url="https://github.com/dsdanielpark/Bard-API", | ||
packages=find_packages(exclude=[]), | ||
python_requires=">=3.6", | ||
install_requires=[], | ||
install_requires=["requests"], | ||
keywords="Python, API, Bard, Google Bard, Large Language Model, Chatbot API, Google API, Chatbot", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|