mirror of
https://github.com/langchain-ai/ambient-agent-101.git
synced 2026-06-30 21:27:54 -04:00
67 lines
1.3 KiB
TOML
67 lines
1.3 KiB
TOML
[project]
|
|
name = "interrupt_workshop"
|
|
version = "0.1.0"
|
|
description = "Workshop for Interrupt Conference"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"langchain>=0.3.9",
|
|
"langchain-core>=0.3.59",
|
|
"langchain-openai",
|
|
"langchain-anthropic",
|
|
"langchain-aws",
|
|
"langgraph>=0.4.2",
|
|
"langsmith[pytest]>=0.3.4",
|
|
"pandas",
|
|
"matplotlib",
|
|
"pytest",
|
|
"pytest-xdist",
|
|
"jupyter",
|
|
"langgraph-cli[inmem]",
|
|
"google-api-python-client>=2.128.0",
|
|
"google-auth-oauthlib",
|
|
"google-auth-httplib2",
|
|
"python-dotenv",
|
|
"pyppeteer",
|
|
"html2text",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["mypy>=1.11.1", "ruff>=0.6.1"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=73.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["email_assistant"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"email_assistant" = "src/email_assistant"
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed"]
|
|
|
|
[tool.ruff]
|
|
lint.select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"D", # pydocstyle
|
|
"D401", # First line should be in imperative mood
|
|
"T201",
|
|
"UP",
|
|
]
|
|
lint.ignore = [
|
|
"UP006",
|
|
"UP007",
|
|
"UP035",
|
|
"D417",
|
|
"E501",
|
|
]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/*" = ["D", "UP"]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|