[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"]