XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

~ | .

be935e54
abc <98614666+xtekky@users.noreply.github.com>
提交于

代码差异

1 个文件 +43 -43
Modified setup.py +43 -43
@@ -5,71 +5,71 @@ from setuptools import find_packages, setup
5 5
6 6 here = os.path.abspath(os.path.dirname(__file__))
7 7
8 with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
9 long_description = "\n" + fh.read()
8 with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as fh:
9 long_description = '\n' + fh.read()
10 10
11 with open("requirements.txt") as f:
11 with open('requirements.txt') as f:
12 12 required = f.read().splitlines()
13 13
14 VERSION = "0.1.8.1"
14 VERSION = '0.1.8.1'
15 15 DESCRIPTION = (
16 "The official gpt4free repository | various collection of powerful language models"
16 'The official gpt4free repository | various collection of powerful language models'
17 17 )
18 18
19 19 # Setting up
20 20 setup(
21 name="g4f",
21 name='g4f',
22 22 version=VERSION,
23 author="Tekky",
24 author_email="<support@g4f.ai>",
23 author='Tekky',
24 author_email='<support@g4f.ai>',
25 25 description=DESCRIPTION,
26 long_description_content_type="text/markdown",
26 long_description_content_type='text/markdown',
27 27 long_description=long_description,
28 28 packages=find_packages(),
29 29 package_data={
30 "g4f": ["g4f/interference/*", "g4f/gui/client/*", "g4f/gui/server/*", "g4f/Provider/npm/*"]
30 'g4f': ['g4f/interference/*', 'g4f/gui/client/*', 'g4f/gui/server/*', 'g4f/Provider/npm/*']
31 31 },
32 32 include_package_data=True,
33 33 install_requires=required,
34 34 entry_points={
35 "console_scripts": ["g4f=g4f.cli:main"],
35 'console_scripts': ['g4f=g4f.cli:main'],
36 36 },
37 url="https://github.com/xtekky/gpt4free", # Link to your GitHub repository
37 url='https://github.com/xtekky/gpt4free', # Link to your GitHub repository
38 38 project_urls={
39 "Source Code": "https://github.com/xtekky/gpt4free", # GitHub link
40 "Bug Tracker": "https://github.com/xtekky/gpt4free/issues", # Link to issue tracker
39 'Source Code': 'https://github.com/xtekky/gpt4free', # GitHub link
40 'Bug Tracker': 'https://github.com/xtekky/gpt4free/issues', # Link to issue tracker
41 41 },
42 42 keywords=[
43 "python",
44 "chatbot",
45 "reverse-engineering",
46 "openai",
47 "chatbots",
48 "gpt",
49 "language-model",
50 "gpt-3",
51 "gpt3",
52 "openai-api",
53 "gpt-4",
54 "gpt4",
55 "chatgpt",
56 "chatgpt-api",
57 "openai-chatgpt",
58 "chatgpt-free",
59 "chatgpt-4",
60 "chatgpt4",
61 "chatgpt4-api",
62 "free",
63 "free-gpt",
64 "gpt4free",
65 "g4f",
43 'python',
44 'chatbot',
45 'reverse-engineering',
46 'openai',
47 'chatbots',
48 'gpt',
49 'language-model',
50 'gpt-3',
51 'gpt3',
52 'openai-api',
53 'gpt-4',
54 'gpt4',
55 'chatgpt',
56 'chatgpt-api',
57 'openai-chatgpt',
58 'chatgpt-free',
59 'chatgpt-4',
60 'chatgpt4',
61 'chatgpt4-api',
62 'free',
63 'free-gpt',
64 'gpt4free',
65 'g4f',
66 66 ],
67 67 classifiers=[
68 "Development Status :: 2 - Pre-Alpha",
69 "Intended Audience :: Developers",
70 "Programming Language :: Python :: 3",
71 "Operating System :: Unix",
72 "Operating System :: MacOS :: MacOS X",
73 "Operating System :: Microsoft :: Windows",
68 'Development Status :: 2 - Pre-Alpha',
69 'Intended Audience :: Developers',
70 'Programming Language :: Python :: 3',
71 'Operating System :: Unix',
72 'Operating System :: MacOS :: MacOS X',
73 'Operating System :: Microsoft :: Windows',
74 74 ],
75 75 )