26 lines
619 B
TOML
26 lines
619 B
TOML
[tool.poetry]
|
|
name = "meganjohns"
|
|
version = "1.1.1"
|
|
package-mode = false
|
|
description = "FastAPI backend for meganjohns.com"
|
|
authors = ["Lucas Jensen <lucas@lucasjensen.me>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "app" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.14"
|
|
fastapi = { extras = ["standard"], version = "^0.128.0" }
|
|
mysql-connector-python = "^9.5.0"
|
|
python-dotenv = "^1.2.1"
|
|
icecream = "^2.1.8"
|
|
black = "^25.12.0"
|
|
gitpython = "^3.1.43"
|
|
|
|
[tool.poetry.scripts]
|
|
dev = "app.scripts.run:main"
|
|
seed = "app.scripts.seed:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|