Initial Commit
This commit is contained in:
commit
14d041c332
10 changed files with 1973 additions and 0 deletions
28
pyproject.toml
Normal file
28
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue