返回提交历史
Modified
setup.py
+2
-2
XFEstudio/gpt4free
~ | g4f v-0.1.5.1
17657933
代码差异
1 个文件
+2
-2
@@ -11,7 +11,7 @@ with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
11
11
with open("requirements.txt") as f:
12
12
required = f.read().splitlines()
13
13
14
with open("interference/requirements.txt") as f:
14
with open("etc/interference/requirements.txt") as f:
15
15
api_required = f.read().splitlines()
16
16
17
17
VERSION = '0.1.5.1'
@@ -29,7 +29,7 @@ setup(
29
29
long_description_content_type="text/markdown",
30
30
long_description=long_description,
31
31
packages=find_packages(),
32
data_files=["interference/app.py"],
32
data_files=["etc/interference/app.py"],
33
33
install_requires=required,
34
34
extras_require={"api": api_required},
35
35
entry_points={