26 lines
504 B
TOML
26 lines
504 B
TOML
[tool.poetry]
|
|
name = "address-book"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Eden Kirin <eden@ekirin.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
litestar = "^2.0.1"
|
|
sqlalchemy = "^2.0.20"
|
|
uvicorn = "^0.23.2"
|
|
asyncpg = "^0.28.0"
|
|
pydantic = "^2.3.0"
|
|
pydantic-settings = "^2.0.3"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.2"
|
|
watchfiles = "^0.20.0"
|
|
pytest-asyncio = "^0.21.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|