forked from LiveCarta/CommentAutomation
29 lines
531 B
TOML
29 lines
531 B
TOML
[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"
|