27 lines
525 B
TOML
27 lines
525 B
TOML
[project]
|
|
name = "firefly-agent"
|
|
version = "0.1.0"
|
|
description = "Personal accounting agent worker for the Firefly III stack"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"apscheduler>=3.10,<4",
|
|
"httpx>=0.27",
|
|
"psycopg[binary]>=3.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
"testcontainers[postgres]>=4",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/agent"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|