forked from acheong08/Bard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import find_packages
from setuptools import setup
setup(
name="GoogleBard",
version="2.1.0",
license="MIT License",
author="Antonio Cheong",
author_email="[email protected]",
description="Reverse engineering of Google's Bard chatbot",
packages=find_packages("src"),
package_dir={"": "src"},
url="https://github.com/acheong08/Bard",
project_urls={"Bug Report": "https://github.com/acheong08/Bard/issues/new"},
install_requires=["prompt_toolkit", "rich", "httpx[socks]"],
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
py_modules=["Bard"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)