1 Star 0 Fork 2

Transient/Qwen-Agent

forked from qzl66/Qwen-Agent 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 2.43 KB
一键复制 编辑 原始数据 按行查看 历史
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_description() -> str:
with open('README.md', 'r', encoding='UTF-8') as f:
long_description = f.read()
return long_description
# To update the package at PyPI:
# ```bash
# python setup.py sdist bdist_wheel
# twine upload dist/*
# ```
setup(
name='qwen-agent',
version=get_version(),
author='Qwen Team',
author_email='[email protected]',
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'
],
},
# Minimal dependencies for Function Calling:
install_requires=[
'dashscope>=1.11.0',
'eval_type_backport',
'json5',
'jsonlines',
'openai',
'pydantic>=2.3.0',
'requests',
'tiktoken',
],
extras_require={
# Extra dependencies for RAG:
'rag': [
'charset-normalizer',
'rank_bm25',
'jieba',
'snowballstemmer',
'beautifulsoup4',
'pdfminer.six',
'pdfplumber',
'python-docx',
'python-pptx',
'pandas',
'tabulate',
],
# Extra dependencies for Code Interpreter:
'code_interpreter': [
'anyio>=3.7.1',
'fastapi>=0.103.1',
'jupyter>=1.0.0',
'matplotlib',
'numpy',
'pandas',
'pillow',
'seaborn',
'sympy',
'uvicorn>=0.23.2',
],
# Extra dependencies for Gradio-based GUI:
'gui': [
'gradio==4.21.0',
'modelscope-studio>=0.4.0',
],
},
url='https://github.com/QwenLM/Qwen-Agent',
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jiyutong/Qwen-Agent.git
[email protected]:jiyutong/Qwen-Agent.git
jiyutong
Qwen-Agent
Qwen-Agent
main

搜索帮助