feat: implement mvp with email-first login flow and langgraph architecture
This commit is contained in:
39
pyproject.toml
Normal file
39
pyproject.toml
Normal file
@@ -0,0 +1,39 @@
|
||||
[project]
|
||||
name = "ea-chatbot"
|
||||
version = "0.1.0"
|
||||
description = "An election analytics chatbot using LangGraph."
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"langgraph",
|
||||
"langchain",
|
||||
"langchain-openai",
|
||||
"langchain-google-genai",
|
||||
"langchain-community",
|
||||
"pandas",
|
||||
"matplotlib",
|
||||
"psycopg2-binary",
|
||||
"termcolor>=3.3.0",
|
||||
"sqlalchemy>=2.0.46",
|
||||
"pyyaml>=6.0.3",
|
||||
"streamlit>=1.54.0",
|
||||
"rich>=14.3.2",
|
||||
"alembic>=1.13.0",
|
||||
"authlib>=1.3.0",
|
||||
"httpx>=0.27.0",
|
||||
"argon2-cffi>=23.1.0",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/ea_chatbot"]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pytest>=9.0.2",
|
||||
"pytest-cov>=7.0.0",
|
||||
"ruff>=0.9.3",
|
||||
"mypy>=1.14.1",
|
||||
]
|
||||
Reference in New Issue
Block a user