File size: 610 Bytes
87334cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d2d6b76
87334cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import find_packages
from setuptools import setup

setup(
    name="revBingGPT",
    version="0.0.1",
    license="GNU General Public License v2.0",
    author="Antonio Cheong",
    author_email="[email protected]",
    description="Reverse engineered Bing Chat API",
    packages=find_packages("src"),
    package_dir={"": "src"},
    url="https://github.com/acheong08/BingGPT",
    install_requires=["asyncio", "requests", "websockets"],
    long_description=open("README.md", encoding="utf-8").read(),
    long_description_content_type="text/markdown",
    py_modules=["BingGPT"],
)