mirror of
https://github.com/crewAIInc/crewAI-examples.git
synced 2026-04-23 03:00:08 -04:00
- 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
22 lines
497 B
TOML
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"
|