This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
api-python/pyproject.toml
2023-05-15 23:16:16 +02:00

23 lines
520 B
TOML

[tool.poetry]
name = "api-python"
version = "0.1.0"
description = "Refactor of golang api in python."
authors = ["Dzioba <stanislaw.dzioba@outlook.com>"]
readme = "README.md"
packages = [{include = "api_python"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.95.1"
sqlalchemy = "^2.0.13"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
starlette = "^0.26.1"
psycopg2 = "^2.9.6"
isort = "^5.12.0"
black = "^23.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"