File size: 753 Bytes
c2179b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "agentframe"
version = "1.0.0"
description = "Agent 专用 DeepSeek 推理框架 — 脑=LLM + 手=工具 + 四层上下文保持 (35.6x KV 压缩)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GPL-3.0" }
authors = [{ name = "Cloud LTE Studio" }]
dependencies = [
    "numpy>=1.24",
    "flask>=3.0",
]

[project.optional-dependencies]
api = ["flask>=3.0"]
dev = ["pytest"]

[project.scripts]
agentframe = "agentframe.cli:main"
agentframe-api = "agentframe.api.server:main"

[tool.setuptools]
packages = ["agentframe", "agentframe.core", "agentframe.llm",
            "agentframe.embed", "agentframe.memory", "agentframe.api"]