Files
manual_slop/pyproject.toml
Ed_ 5f661f76b4 fix(hooks): expose mma_tier_usage in /api/gui/mma_status; install pytest-timeout
- api_hooks.py: add mma_tier_usage to get_mma_status() response
- pytest-timeout 2.4.0 installed so mark.timeout(300) is enforced in CI

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-01 14:26:03 -05:00

32 lines
581 B
TOML

# pyproject.toml
[project]
name = "manual_slop"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"dearpygui",
"imgui-bundle",
"google-genai",
"anthropic",
"tomli-w",
"psutil>=7.2.2",
"fastapi",
"uvicorn",
"tree-sitter>=0.25.2",
"tree-sitter-python>=0.25.0",
"mcp>=1.0.0",
"pytest-timeout>=2.4.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-asyncio>=0.25.3",
]
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (requires live GUI)",
]