Implement service-based model for jobs

This commit is contained in:
2026-06-29 13:18:23 +05:30
parent 7201fa0138
commit e0cd0bba6e
12 changed files with 728 additions and 2 deletions

View File

@@ -1,7 +1,24 @@
[project]
name = "alemno-payments"
version = "0.1.0"
description = "Add your description here"
description = "AI Powered Transaction Processing Pipeline"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
dependencies = [
"asyncpg>=0.31.0",
"celery>=5.6.3",
"fastapi>=0.138.1",
"httpx>=0.28.1",
"pydantic-settings>=2.14.2",
"pytest>=9.1.1",
"pytest-asyncio>=1.4.0",
"python-dotenv>=1.2.2",
"python-multipart>=0.0.32",
"redis>=8.0.1",
"sqlalchemy>=2.0.51",
"uvicorn>=0.49.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"