-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.62 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
AgentRT Python SDK 安装脚本
提供 setuptools 安装配置,支持 pip install
"""
from setuptools import setup, find_packages
setup(
name="agentrt",
version="0.1.0",
description="AgentRT Python SDK - 官方多语言 SDK 集合",
long_description=open("README.md", "r", encoding="utf-8").read() if __name__ == "__main__" else "",
long_description_content_type="text/markdown",
author="SPHARX Ltd.",
author_email="team@spharx.com",
url="https://github.com/spharx/agentrt",
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.8",
install_requires=[
"requests>=2.28.0",
"aiohttp>=3.8.0",
],
extras_require={
"test": [
"pytest>=7.0.0",
"pytest-asyncio>=0.18.0",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license="Apache-2.0",
keywords="agentrt sdk client agent memory session skill",
project_urls={
"Documentation": "https://github.com/spharx/agentrt/tree/main/sdk/python",
"Source": "https://github.com/spharx/agentrt",
"Bug Tracker": "https://github.com/spharx/agentrt/issues",
},
)