Initial Commit

This commit is contained in:
Emma Shoup 2025-05-28 10:29:00 -06:00
commit 14d041c332
Signed by: emma
SSH key fingerprint: SHA256:CIXh/a+plLTw8Mytkr8A0ZEE4QmTHZ7qSOicoc4Y9Zk
10 changed files with 1973 additions and 0 deletions

28
pyproject.toml Normal file
View file

@ -0,0 +1,28 @@
[project]
name = "uptime-pie-api"
version = "0.1.0"
description = ""
authors = [
{name = "Emma Shoup",email = "emma@shoup.io"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi[standard] (>=0.115.12,<0.116.0)",
"apscheduler (>=3.11.0,<4.0.0)",
"sqlmodel (>=0.0.24,<0.0.25)"
]
license = "MIT"
[tool.poetry]
packages = [{include = "uptime_pie_api", from = "src"}]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
black = "^25.1.0"
httpx = "^0.28.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"