Spaces:
Runtime error
Runtime error
File size: 849 Bytes
d5b7ee9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | [project]
name = "trading-cli"
version = "0.1.0"
description = "Full-screen TUI AI trading app with FinBERT sentiment analysis"
readme = "README.md"
requires-python = ">=3.11,<3.12"
license = { text = "MIT" }
dependencies = [
"textual>=0.61.0",
"rich>=13.7.0",
"click>=8.1.7",
"alpaca-py>=0.28.0",
"transformers>=4.40.0",
"torch>=2.2.0",
"yfinance>=0.2.38",
"pandas>=2.2.0",
"numpy>=1.26.0",
"toml>=0.10.2",
"scipy>=1.12.0",
"textual-autocomplete>=3.0.0",
"sentence-transformers>=2.2.0",
]
[project.scripts]
trading-cli = "trading_cli.__main__:main"
trading-cli-dev = "trading_cli.run_dev:main"
[project.optional-dependencies]
dev = ["watchfiles>=0.20.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["trading_cli"]
|