代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from src.pandora import __version__
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = f.read().split('\n')
with open('requirements_api.txt', 'r', encoding='utf-8') as f:
requirements_api = f.read().split('\n')
setup(
name='Pandora-ChatGPT',
version=__version__,
python_requires='>=3.7',
author='Neo Peng',
author_email='pengzhile@gmail.com',
keywords='OpenAI ChatGPT ChatGPT-Plus gpt-3.5-turbo gpt-3.5-turbo-0301',
description='A command-line interface to ChatGPT',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pengzhile/pandora',
packages=find_packages('src'),
package_dir={'pandora': 'src/pandora'},
include_package_data=True,
install_requires=requirements,
extras_require={
'api': requirements_api,
'cloud': ['pandora-cloud~=0.4.4'],
},
entry_points={
'console_scripts': [
'pandora = pandora.launcher:run',
'pandora-cloud = pandora.cloud_launcher:run',
]
},
project_urls={
'Source': 'https://github.com/pengzhile/pandora',
'Tracker': 'https://github.com/pengzhile/pandora/issues',
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Natural Language :: Chinese (Simplified)',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: SQL',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Communications :: Chat',
'Topic :: Internet :: WWW/HTTP',
],
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。