Files
notify-bridge/packages/core/pyproject.toml
T
alexei.dolgolyov 85a8f1e71c
Release / test-backend (push) Successful in 2m20s
Release / release (push) Successful in 1m40s
chore: release v0.8.2
2026-05-22 22:54:00 +03:00

30 lines
640 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "notify-bridge-core"
version = "0.8.2"
description = "Core library for Notify Bridge — service provider abstractions, models, notifications, and templates"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.9",
"jinja2>=3.1",
"aiosmtplib>=3.0",
"jsonpath-ng>=1.6",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"aioresponses>=0.7",
]
[tool.hatch.build.targets.wheel]
packages = ["src/notify_bridge_core"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]