Antonio Cheong commited on
Commit
87334cf
·
1 Parent(s): cb29a39

PyPi template

Browse files
Files changed (3) hide show
  1. README.md +1 -0
  2. setup.py +17 -0
  3. BingGPT.py → src/BingGPT.py +0 -0
README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ # Hello world
setup.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import find_packages
2
+ from setuptools import setup
3
+
4
+ setup(
5
+ name="revBingGPT",
6
+ version="0.0.1",
7
+ license="GNU General Public License v2.0",
8
+ author="Antonio Cheong",
9
+ author_email="[email protected]",
10
+ description="Reverse engineered Bing Chat API",
11
+ packages=find_packages("src"),
12
+ package_dir={"": "src"},
13
+ url="https://github.com/acheong08/BingGPT",
14
+ install_requires=["asyncio", "requests", "websockets"],
15
+ long_description=open("README.md", encoding="utf-8").read(),
16
+ long_description_content_type="text/markdown",
17
+ )
BingGPT.py → src/BingGPT.py RENAMED
File without changes