Multi-Agent-System / pyproject.toml
jatin gyass
initial commit
2eef9ea
Raw
History Blame Contribute Delete
1.23 kB
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "multi-agent-system"
version = "0.1.0"
description = "Production-grade LangGraph system with specialized AI agents"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["langgraph", "agents", "ai", "llm", "multi-agent"]
dependencies = [
"langgraph>=0.2.50",
"langchain>=0.3.7",
"langchain-openai>=0.2.9",
"langchain-community>=0.3.7",
"openai>=1.55.3",
"fastapi>=0.115.5",
"uvicorn[standard]>=0.32.1",
"pydantic>=2.10.2",
"pydantic-settings>=2.6.1",
"redis>=5.2.1",
"sqlalchemy>=2.0.36",
"aiosqlite>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.4",
"pytest-asyncio>=0.24.0",
"black>=24.1.1",
"ruff>=0.3.5",
"mypy>=1.10.0",
]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false