calendar_test/pyproject.toml

35 lines
707 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"}
google-api-python-client = "^2.90.0"
google-auth-httplib2 = "^0.1.0"
google-auth-oauthlib = "^1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"