init commit

This commit is contained in:
Stanislaw
2023-05-15 22:41:28 +02:00
parent 10aac5802d
commit aea414f95d
8 changed files with 741 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"