Skip to content

Commit

Permalink
build: 0.1.5 add dependency requests
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed May 18, 2023
1 parent 4a50784 commit dd6a8e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bardapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]>"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand All @@ -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",
Expand Down

0 comments on commit dd6a8e7

Please sign in to comment.