| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| ENV/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # Git | |
| .git/ | |
| .gitignore | |
| # Logs | |
| logs/*.log | |
| # Environment (will be set via HF Secrets) | |
| .env | |
| # Archive (not needed in deployment) | |
| archive/ | |
| # Documentation | |
| *.md | |
| !README.md | |
| # Test files | |
| tests/ | |
| *.test.py | |