Spaces:
No application file
No application file
File size: 517 Bytes
a71dd82 | 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 | [project]
name = "market-analyzing-platform"
version = "0.1.0"
description = "Market-wide risk radar with universe loading, price ingestion, and alerting."
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"lxml",
"numpy",
"pandas",
"pyyaml",
"requests",
"yfinance",
]
[project.scripts]
market-analyzing-platform = "src.core.main:run_forever"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
|