Files
awoooi/scripts/aider_watch_client/pyproject.toml

24 lines
571 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"]
[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"]