# -*- 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.5.1'], }, 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', ], )