Files
OqeeAdWatch/pyproject.toml
√(noham)² 4d4c470410 Refactor core logic and add visualization tools
Moved database and scraping logic to utils/scrap.py for modularity. Added utils/visualizer.py for channel-level ad break analysis and plotting. Introduced .env.example for webhook configuration and updated main.py to support webhook heartbeats and improved logging. Updated README with new usage and visualization instructions. Added matplotlib and python-dotenv as dependencies.
2025-11-30 14:45:43 +01:00

17 lines
342 B
TOML

[project]
name = "OqeeAdWatch"
version = "0.1.0"
description = "Periodically fetches Oqee anti-adskipping periods and archives them in SQLite."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"requests>=2.32.5",
"matplotlib>=3.9.2",
"python-dotenv>=1.0.0",
]
[dependency-groups]
debug = [
"pylint>=4.0.3",
]