IntuitionX_agent/pyproject.toml
2026-01-01 17:48:45 +08:00

35 lines
791 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[project]
name = "Heart_Mirror_Agent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agentscope>=1.0.10",
"loguru>=0.7.3",
"pre-commit>=4.3.0",
"pydantic>=2.11.7",
"pyyaml>=6.0.2",
"ruff>=0.12.11",
]
[tool.ruff]
line-length = 88
lint.select = [
"E", # pycodestyle比如 E501 行过长)
"W", # pycodestyle warnings比如 W293 空白行含空格)
"F", # pyflakes未使用变量等
"B", # bugbear潜在 bug
"UP", # pyupgrade自动升级语法
"I", # isort导入顺序
"RUF", # Ruff 自己的规则(比如 Unicode 混淆检查)
]
exclude = [
".git",
"__pycache__",
"build",
"dist",
".venv",
]