32 lines
606 B
TOML
32 lines
606 B
TOML
[tool.pytest.ini_options]
|
|
pythonpath = [
|
|
".", "src",
|
|
]
|
|
asyncio_mode="auto"
|
|
|
|
[tool.poetry]
|
|
name = "backend_labs"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["quaduzi <theckit@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.96.0"
|
|
gunicorn = "^20.1.0"
|
|
requests = "^2.31.0"
|
|
uvicorn = "^0.22.0"
|
|
sqlmodel = "^0.0.8"
|
|
jinja2 = "^3.1.2"
|
|
alembic = "^1.11.1"
|
|
psycopg2 = "^2.9.6"
|
|
python-multipart = "^0.0.6"
|
|
python-jose = "^3.3.0"
|
|
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|