[app] fix ChatGPT requirements (#2704)

pull/2705/head
binmakeswell 2023-02-14 22:48:15 +08:00 committed by GitHub
parent 1b34701027
commit 8408c852a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 2 deletions

View File

@ -22,7 +22,6 @@ setup(
packages=find_packages(exclude=(
'tests',
'benchmarks',
'requirements',
'*.egg-info',
)),
description='A RLFH implementation (ChatGPT) powered by ColossalAI',
@ -30,7 +29,7 @@ setup(
long_description_content_type='text/markdown',
license='Apache Software License 2.0',
url='https://github.com/hpcaitech/ChatGPT',
install_requires=fetch_requirements('requirements/requirements.txt'),
install_requires=fetch_requirements('requirements.txt'),
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3',