File size: 605 Bytes
9a46619 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
"""
Deployment configuration for Dynamic Highscores on HuggingFace Spaces.
This file configures the application for deployment on HuggingFace Spaces.
"""
sdk_version: 3.0.0
app_file: app.py
models:
- huggingface-hub
- transformers
- datasets
- torch
- gradio
- pandas
- plotly
- apscheduler
- tqdm
- requests
- python-dateutil
- numpy
python_version: 3.10.12
hf_oauth: true
env:
- OAUTH_CLIENT_ID=$OAUTH_CLIENT_ID
- OAUTH_CLIENT_SECRET=$OAUTH_CLIENT_SECRET
- OAUTH_AUTHORIZATION_URL=$OAUTH_AUTHORIZATION_URL
- OAUTH_TOKEN_URL=$OAUTH_TOKEN_URL
oauth_scopes:
- inference
|