IntuitionX_agent/pyproject.toml

35 lines
791 B
TOML
Raw Normal View History

2026-01-01 17:48:45 +08:00
[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",
]