test_api/pyproject.toml

35 lines
726 B
TOML
Raw Permalink Normal View History

2024-03-14 22:27:37 +03:00
[tool.poetry]
name = "test-api"
version = "0.1.0"
description = ""
authors = ["Sergey Vanyushkin <pi3c@yandex.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
2024-03-14 23:01:58 +03:00
python = "^3.10"
2024-03-14 22:27:37 +03:00
sqlalchemy = "^2.0.28"
asyncpg = "^0.29.0"
2024-03-17 12:46:58 +03:00
passlib = "^1.7.4"
pyjwt = "^2.8.0"
2024-03-18 00:33:48 +03:00
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
2024-03-21 01:52:55 +03:00
python-multipart = "^0.0.9"
2024-03-14 22:27:37 +03:00
[tool.poetry.scripts]
api = "test_api.run:run_server"
[tool.poetry.group.prod.dependencies]
uvicorn = "^0.28.0"
fastapi = "^0.110.0"
pydantic-settings = "^2.2.1"
2024-03-14 23:01:58 +03:00
alembic = "^1.13.1"
2024-03-15 01:49:04 +03:00
psycopg2-binary = "^2.9.9"
pyyaml = "^6.0.1"
2024-03-14 22:27:37 +03:00
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"