Files
awoooi/scripts/aider_watch_client/pyproject.toml
Your Name 1744b1e923
Some checks failed
CD Pipeline / build-and-deploy (push) Has been cancelled
fix(aider): stdlib logging → structlog + typing-extensions dep (E2E修復)
- aider_events.py: logging.getLogger → structlog.get_logger (keyword args compatible)
- pyproject.toml: add typing-extensions>=4.0 (python-ulid 3.x requires Self)

2026-04-20 @ Asia/Taipei
2026-04-20 19:59:35 +08:00

24 lines
597 B
TOML

[project]
name = "aider-watch-client"
version = "0.2.0"
description = "Mac client for aider-watch (posts events to awoooi API)"
requires-python = ">=3.11"
dependencies = ["requests>=2.31", "python-ulid>=3.0", "typing-extensions>=4.0"]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
aiderw = "aider_watch_client.aiderw:main"
aider-watch = "aider_watch_client.cli:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["aider_watch_client*"]
[tool.pytest.ini_options]
testpaths = ["tests"]