Market_Analyzing_Platform / pyproject.toml
Dmitry Beresnev
uv migrations
a71dd82
raw
history blame contribute delete
517 Bytes
[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"]