20 lines
468 B
TOML
20 lines
468 B
TOML
[project]
|
|
name = "backup-orchestrator"
|
|
version = "0.1.0"
|
|
description = "FastAPI orchestrator for Windows SSH pull backups"
|
|
authors = ["Codex <dev@example.com>"]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
[project.dependencies]
|
|
fastapi = "^0.111"
|
|
uvicorn = {extras = ["standard"], version = "^0.23"}
|
|
sqlmodel = "^0.0.8"
|
|
python-dotenv = "^1.0"
|
|
cryptography = "^41.0"
|
|
passlib = "^1.7"
|
|
|
|
[build-system]
|
|
requires = ["hatchling>=1.8"]
|
|
build-backend = "hatchling.build"
|