Antonio Cheong commited on
Commit
5df2eb2
·
1 Parent(s): 0169a97

setup.py is better

Browse files
pyproject.toml DELETED
@@ -1,29 +0,0 @@
1
- [project]
2
- name = "EdgeGPT"
3
- version = "0.0.50"
4
- description = "Reverse engineered Edge Chat API"
5
- readme = "README.md"
6
- requires-python = ">=3.8"
7
- license = {file = "LICENSE"}
8
- keywords = ["Bing", "ChatGPT"]
9
- authors = [
10
- {name = "Antonio Cheong", email = "[email protected]"},
11
- ]
12
- maintainers = [
13
- {name = "Antonio Cheong", email = "[email protected]"}
14
- ]
15
- dependencies = [
16
- "asyncio",
17
- "tls-client>=0.1.8",
18
- "websockets>=10.4",
19
- ]
20
- [project.urls]
21
- homepage = "https://github.com/acheong08/EdgeGPT"
22
- releases = "https://github.com/acheong08/EdgeGPT/releases"
23
- [build-system]
24
- requires = [
25
- "setuptools >= 65.5.0",
26
- ]
27
- build-backend = "setuptools.build_meta"
28
- [tool.setuptools]
29
- py-modules = ["EdgeGPT"]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
setup.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ [metadata]
2
+ description_file=README.md
3
+ license_files=LICENSE
setup.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import find_packages
2
+ from setuptools import setup
3
+
4
+ setup(
5
+ name="EdgeGPT",
6
+ version="0.0.48",
7
+ license="GNU General Public License v2.0",
8
+ author="Antonio Cheong",
9
+ author_email="[email protected]",
10
+ description="Reverse engineered Edge Chat API",
11
+ packages=find_packages("src"),
12
+ package_dir={"": "src"},
13
+ url="https://github.com/acheong08/EdgeGPT",
14
+ install_requires=["asyncio", "tls-client", "websockets"],
15
+ long_description=open("README.md", encoding="utf-8").read(),
16
+ long_description_content_type="text/markdown",
17
+ py_modules=["EdgeGPT"],
18
+ )
src/{EdgeGPT/EdgeGPT.py → EdgeGPT.py} RENAMED
File without changes
src/EdgeGPT/__init__.py DELETED
File without changes