Files
trading-bot/pyproject.toml
T
2026-08-11 20:23:59 +03:00

29 lines
563 B
TOML

[project]
name = "trading-bot"
version = "0.1.0"
description = "Python trading bot using machine learning and the Alpaca Markets API."
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"alpaca-py>=0.43.5",
"matplotlib>=3.11.1",
"pandas>=2.3.0",
"pyarrow>=20.0.0",
"pytest>=9.1.1",
"python-dotenv>=1.2.2",
"scikit-learn>=1.9.0",
"xgboost>=3.2.0",
]
[dependency-groups]
dev = [
"ipykernel>=7.3.0",
]
[tool.uv]
package = true
[build-system]
requires = ["uv_build>=0.8.0,<0.9.0"]
build-backend = "uv_build"