Convert scripts to use Typer and add requirements.txt

- Replaced argparse with Typer for CLI argument parsing in both scripts
- Updated function signatures and calls accordingly in build_season_schedule.py and compute_ratings.py
- Added requirements.txt listing dependencies including typer[all], pandas, numpy, etc.
This commit is contained in:
2025-08-28 15:06:10 -05:00
parent 5cecc6e280
commit ef11cdbac3
4 changed files with 76 additions and 80 deletions

5
requirements.txt Normal file
View File

@@ -0,0 +1,5 @@
typer[all]
pandas
numpy
beautifulsoup4
requests