37 lines
796 B
TOML
37 lines
796 B
TOML
[tool.poetry]
|
|
name = "adminuuidpostgresql"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["RicardoJDaleprane <ricardo.daleprane@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
fastapi = "^0.112.2"
|
|
uvicorn = {extras = ["standard"], version = "^0.30.6"}
|
|
sqlalchemy = "^2.0.32"
|
|
alembic = "^1.13.2"
|
|
fastapi-users = "^13.0.0"
|
|
fastapi-users-db-sqlalchemy = "^6.0.1"
|
|
uuid6 = "^2024.7.10"
|
|
asyncpg = "^0.29.0"
|
|
typeguard = "^4.4.1"
|
|
fastapi-cli = "^0.0.5"
|
|
boto3 = "^1.35.90"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
httpx = {extras = ["http2"], version = "^0.27.2"}
|
|
pytest = "^8.3.2"
|
|
pytest-asyncio = "^0.24.0"
|
|
asyncio = "^3.4.3"
|
|
pytest-cov = "^5.0.0"
|
|
pytest-html = "^4.1.1"
|
|
trio = "^0.26.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|