Files
pics_server/pyproject.toml
quantulr a5dffc2bf8 intt
2022-09-26 23:33:24 +08:00

27 lines
604 B
TOML

[tool.poetry]
name = "pics_server"
version = "0.1.0"
description = ""
authors = ["quantulr <35954003+quantulr@users.noreply.github.com>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.85.0"
uvicorn = {extras = ["standard"], version = "^0.18.3"}
SQLAlchemy = "^1.4.41"
PyMySQL = "^1.0.2"
python-multipart = "^0.0.5"
Pillow = "^9.2.0"
requests = "^2.28.1"
gunicorn = "^20.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
autopep8 = "^1.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
serve = "pics_server.main:runApp"