initialize project structure

This commit is contained in:
2025-11-08 03:02:48 +01:00
parent f811d896ef
commit a897db2fc2
9 changed files with 2149 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "market-prediction"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"ipykernel>=7.1.0",
"jupyter>=1.1.1",
"lightgbm>=4.6.0",
"matplotlib>=3.10.7",
"numpy>=2.3.4",
"pandas>=2.3.3",
"plotly>=6.4.0",
"scikit-learn>=1.7.2",
"seaborn>=0.13.2",
"xgboost>=3.1.1",
]