Files
crewAI-examples/stock_analysis/pyproject.toml
Matt B 0a575127f9 fix: update dependencies and python versions
- Update all python versions to <=3.12
- Update crewai-tools to ^0.14.0
- Update langchain_openai to 0.1.0
- Update unstructured versions
- Remove unnecessary dependencies
2024-12-10 21:29:10 +08:00

22 lines
497 B
TOML

[tool.poetry]
name = "stock_analysis"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<=3.12"
crewai = {extras = ["tools"], version = "^0.85.0"}
python-dotenv = "^1.0.1"
html2text = "^2024.2.26"
sec-api = "^1.0.20"
[tool.poetry.scripts]
stock_analysis = "stock_analysis.main:run"
train = "stock_analysis.main:train"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"