add poetry to project

This commit is contained in:
Jakub Miazek
2022-10-03 14:29:17 +02:00
parent 7b079f84c1
commit 68eca7c0f6
8 changed files with 2106 additions and 1369 deletions

36
pyproject.toml Normal file
View File

@@ -0,0 +1,36 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.1"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
packages = []
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
alembic = "*"
asyncpg = "*"
httpx = "*"
pydantic = "*"
sqlalchemy = "*"
fastapi = "*"
uvicorn = { extras = ["standard"], version = "*" }
uvloop = "*"
httptools = "*"
rich = "*"
devtools = {extras = ["pygments"], version = "*"}
isort = "*"
mypy = "*"
flake8 = "*"
black = "*"
safety = "*"
autoflake = "*"
pyupgrade = "*"
ipython = "*"
pylint = "*"
pytest-cov = "*"
pytest-asyncio = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"