AI-News-Agent / pyproject.toml
OxbridgeEconomics
Initial commit
ab30e46
raw
history blame
No virus
736 Bytes
[tool.poetry]
name = "python-template"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.12"
langchain = "0.2.7"
langchain-openai = "0.1.15"
langchain-pinecone = "0.1.1"
pinecone-client = "3.2.2"
python-dotenv = "^1.0.1"
langchain-core = "^0.2.16"
flask = "^3.0.3"
boto3 = "^1.34.144"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"