feat: CLI tool for stock analysis pipeline management
- Command-line interface for triggering collection and analysis - Pipeline orchestration commands - Integration with all microservices via Redis Streams Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
20
pyproject.toml
Normal file
20
pyproject.toml
Normal file
@ -0,0 +1,20 @@
|
||||
[project]
|
||||
name = "stock-cli"
|
||||
version = "0.1.0"
|
||||
description = "CLI orchestration and reporting for stock analysis pipeline"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"stock-common",
|
||||
"typer>=0.12",
|
||||
"rich>=13.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
stock = "stock_cli.main:app"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/stock_cli"]
|
||||
Reference in New Issue
Block a user