pyproject.toml

mail@pastecode.io avatar
unknown
plain_text
a month ago
826 B
2
Indexable
Never
[tool.poetry]
name = "Force App"
version = "0.1.0"
description = "Force AI app"
authors = ["Yoofza"]

[tool.poetry.dependencies]
python = ">=3.12.5,<3.13"
crewai = "0.1.24"
langchain = "0.1.16"  # Updated version to match langchain-openai
langchain-core = ">=0.2.33,<0.3.0"  # Updated version to match langchain-openai
langchain-openai = "0.1.22"  # Compatible with langchain-core
opencv-python = "^4.5.5"
mediapipe = "^0.9.0"
openai-whisper = "20231117"
python-dotenv = "1.0.0"
unstructured = "==0.10.25"
pyowm = "3.3.0"
tools = "^0.1.9"

[tool.pyright]
useLibraryCodeForTypes = true
exclude = [".cache"]

[tool.ruff]
select = ['E', 'W', 'I', 'b', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
Leave a Comment