36 lines
703 B
TOML
36 lines
703 B
TOML
[project]
|
|
name = "item-bank-backend"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"aiosqlite>=0.20",
|
|
"alembic>=1.14",
|
|
"bcrypt>=4.2",
|
|
"boto3>=1.35",
|
|
"cryptography>=43",
|
|
"fastapi>=0.115",
|
|
"httpx>=0.27",
|
|
"openai>=1.55",
|
|
"pillow>=11",
|
|
"pydantic>=2.9",
|
|
"pydantic-settings>=2.6",
|
|
"pyjwt>=2.10",
|
|
"python-multipart>=0.0.12",
|
|
"slowapi>=0.1.10",
|
|
"sqlalchemy[asyncio]>=2.0",
|
|
"uvicorn[standard]>=0.32",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-asyncio>=0.24",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|