33 lines
713 B
TOML
33 lines
713 B
TOML
[tool.poetry]
|
|
name = "market-predictor"
|
|
version = "0.1.0"
|
|
description = "Market VWAP prediction using RAG model"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
packages = [
|
|
{ include = "market_predictor" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
pandas = "^2.2.0"
|
|
numpy = "^1.26.0"
|
|
yfinance = "^0.2.36"
|
|
langchain-openai = "^0.0.5"
|
|
langchain-community = "^0.0.19"
|
|
matplotlib = "^3.8.0"
|
|
seaborn = "^0.13.0"
|
|
jupyter = "^1.0.0"
|
|
tqdm = "^4.66.1"
|
|
pytz = "^2024.1"
|
|
python-dotenv = "^1.0.0"
|
|
datetime = "^5.5"
|
|
ipywidgets = "^8.1.5"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.0.0"
|
|
black = "^24.1.0"
|
|
isort = "^5.13.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api" |