initial: scaffold atm trading monitor (Faza 1)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-04-15 22:03:36 +00:00
commit 9207197a56
21 changed files with 2139 additions and 0 deletions

37
pyproject.toml Normal file
View File

@@ -0,0 +1,37 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "atm"
version = "0.1.0"
description = "M2D Trading Monitor — TradeStation chart watcher, Discord/Telegram notifier"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26",
"opencv-python>=4.9",
"pillow>=10.0",
"requests>=2.31",
"rich>=13.0",
]
[project.optional-dependencies]
windows = [
"mss>=9.0",
"pygetwindow>=0.0.9",
"pywin32>=306",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
[project.scripts]
atm = "atm.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]