agentbond-api / pyproject.toml
Karan6124's picture
feat: install itsdangerous and sync it with the virtual environment
9b7c893
Raw
History Blame Contribute Delete
908 Bytes
[project]
name = "investigator-ai"
version = "0.1.0"
description = "Multi-Agent Investigation Engine using Google Gemini."
requires-python = ">=3.11"
dependencies = [
"fastapi==0.111.0",
"uvicorn[standard]==0.29.0",
"celery==5.3.6",
"redis==5.0.4",
"sqlalchemy==2.0.30",
"psycopg2-binary==2.9.9",
"alembic==1.13.1",
"pydantic==2.7.1",
"pydantic-settings==2.2.1",
"google-generativeai==0.5.4",
"prometheus-client==0.20.0",
"python-dotenv==1.0.1",
"ddgs>=9.14.3",
"authlib==1.3.0",
"python-jose[cryptography]==3.3.0",
"passlib[bcrypt]==1.7.4",
"bcrypt==4.1.3",
"httpx==0.27.0",
"itsdangerous==2.2.0",
]
[dependency-groups]
dev = [
"pytest==8.2.0",
"pytest-asyncio==0.23.6",
"httpx==0.27.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]