| # Requirements for leaderboard generation scripts | |
| # These scripts process Excel files and generate JSON leaderboards | |
| # Install with: pip install -r scripts/requirements.txt | |
| # Core dependencies | |
| pandas>=2.0.0 # For reading Excel files and data manipulation | |
| openpyxl>=3.1.0 # Excel file (.xlsx) support for pandas | |
| # Optional but recommended | |
| xlrd>=2.0.1 # Support for legacy .xls files (if needed) | |
| # Note: If you're only running the Gradio web app (app.py), | |
| # you only need the requirements.txt in the root directory. | |
| # This file is only needed if you're generating/updating leaderboards from Excel files. | |