1
0
This commit is contained in:
2026-03-30 09:54:38 +00:00
commit 84fc5e4b14
10 changed files with 278 additions and 0 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[project]
name = "comment-automation"
version = "0.1.0"
description = "Comment automation service"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi[standard]>=0.116.0",
"pydantic>=2.11.0",
"uplink>=0.9.7",
]
[dependency-groups]
dev = [
"pytest>=8.3.0",
"pre-commit>=4.2.0",
]
[build-system]
requires = ["hatchling>=1.24.2"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/comment_automation"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"