mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-11-30 13:20:40 +03:00
add poetry to project
This commit is contained in:
36
pyproject.toml
Normal file
36
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user