3 Star 35 Fork 37

pengzhile/pandora

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.34 KB
一键复制 编辑 原始数据 按行查看 历史
pengzhile 提交于 2023-06-02 12:30 . support for share token
# -*- 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',
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/pengzhile/pandora.git
git@gitee.com:pengzhile/pandora.git
pengzhile
pandora
pandora
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385