First version!

This commit is contained in:
2023-02-28 22:04:14 +01:00
commit 8053f78d85
8 changed files with 1434 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[tool.poetry]
name = "projectorpi-web"
version = "0.1.0"
description = ""
authors = ["Marijn Doeve <marijn@doeve.me>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = {extras = ["all"], version = "^0.92.0"}
pydantic = "^1.10.5"
projectorpi = {version = "^0.2.0", source = "gitea"}
requests = "^2.28.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[[tool.poetry.source]]
name = "gitea"
url = "https://gitea.marijndoeve.nl/api/packages/Marijn/pypi/simple"
default = false
secondary = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"