代码拉取完成,页面将自动刷新
import re
from setuptools import find_packages, setup
def get_version() -> str:
with open('qwen_agent/__init__.py', encoding='utf-8') as f:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
f.read(),
re.MULTILINE,
).group(1)
return version
def read_requirements():
with open('requirements.txt') as req:
content = req.read()
requirements = content.split('\n')
# Note: `pip install qwen-agent` by default installs the following deps for code_interpreter.
# However, if you do not want these optional deps, you can install qwen-agent via the following:
# ```bash
# curl -O https://raw.githubusercontent.com/QwenLM/Qwen-Agent/main/requirements.txt;
# pip install -r requirements.txt;
# pip install -U --no-deps qwen-agent;
# ```
code_interpreter_deps = [
'anyio>=3.7.1',
'fastapi>=0.103.1',
'jupyter>=1.0.0',
'matplotlib',
'numpy',
'pandas',
'pillow',
'seaborn',
'sympy',
'uvicorn>=0.23.2',
]
requirements.extend(code_interpreter_deps)
return requirements
def read_description() -> str:
with open('README.md', 'r', encoding='UTF-8') as f:
long_description = f.read()
return long_description
setup(
name='qwen-agent',
version=get_version(),
author='Qwen Team',
author_email='tujianhong.tjh@alibaba-inc.com',
description='Qwen-Agent: Enhancing LLMs with Agent Workflows, RAG, Function Calling, and Code Interpreter.',
long_description=read_description(),
long_description_content_type='text/markdown',
keywords=['LLM', 'Agent', 'Function Calling', 'RAG', 'Code Interpreter'],
packages=find_packages(exclude=['examples', 'examples.*', 'qwen_server', 'qwen_server.*']),
package_data={
'qwen_agent': [
'utils/qwen.tiktoken', 'tools/resource/*.ttf', 'tools/resource/*.py', 'gui/assets/*.css',
'gui/assets/*.jpeg'
],
},
install_requires=read_requirements(),
extras_require={
'gui': [
'gradio==4.21.0',
'modelscope-studio>=0.4.0',
],
},
url='https://github.com/QwenLM/Qwen-Agent',
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。