22 lines
530 B
TOML
22 lines
530 B
TOML
|
[tool.poetry]
|
||
|
name = "app"
|
||
|
version = "0.1.0"
|
||
|
description = "Przykład aplikacji FastAPI z WebSockets i Flutter"
|
||
|
authors = ["mpabi"]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.8"
|
||
|
fastapi = "^0.85"
|
||
|
websockets = "^12.0"
|
||
|
sqlalchemy = "^2.0.26"
|
||
|
strawberry-graphql = {extras = ["fastapi"], version = "^0.219.2"}
|
||
|
mysqlclient = "^2.2.4"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
uvicorn = "^0.17.6"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry run pip install --no-deps ."
|
||
|
build-frontend = "poetry run flutter build web"
|