kulono / doom-loop
blob · pyproject.toml · toml
← filesrepo
pyproject.tomltoml
1[build-system]
2requires = ["setuptools>=61"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "doom-loop"
7version = "0.1.0"
8description = "Dead-loop detection and self-recovery for LLM agents — 4 engines (repeat / ping-pong / poll-without-progress / cross-agent loops) with graded recovery actions."
9readme = "README.md"
10license = {text = "AGPL-3.0"}
11requires-python = ">=3.9"
12authors = [{name = "Zize Tu", email = "[email protected]"}]
13keywords = ["llm", "agent", "loop-detection", "self-healing", "ai-safety"]
14classifiers = [
15 "Development Status :: 4 - Beta",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: GNU Affero General Public License v3",
18 "Programming Language :: Python :: 3",
19 "Topic :: Scientific/Engineering :: Artificial Intelligence",
20]
21
22[tool.setuptools]
23packages = ["doom_loop"]
24
25[tool.pytest.ini_options]
26testpaths = ["tests"]
27
100%