poetry migration and general server cleanup

This commit is contained in:
Lucas Jensen
2024-06-29 11:41:32 -07:00
parent c2fa4b12ea
commit 53850749b8
11 changed files with 1369 additions and 220 deletions

22
server/pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[tool.poetry]
name = "lucasjensen-fastapi"
version = "0.1.0"
description = "A RESTful API for lucasjensen.me"
authors = ["Lucas Jensen <lucas@lucasjensen.me>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
black = "^24.4.2"
pytest = "^8.2.2"
fastapi = "^0.111.0"
mysql-connector-python = "^8.4.0"
pyjwt = "^2.8.0"
pydantic = "^2.7.4"
pydantic-settings = "^2.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"