Spaces:
Build error
Build error
| # Git | |
| .git | |
| .gitignore | |
| .github | |
| # Python | |
| __pycache__ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| .Python | |
| *.so | |
| *.egg | |
| *.egg-info | |
| dist | |
| build | |
| .pytest_cache | |
| .coverage | |
| htmlcov | |
| .mypy_cache | |
| # Environment | |
| .env | |
| .venv | |
| venv | |
| env | |
| # IDE | |
| .vscode | |
| .idea | |
| *.swp | |
| *.swo | |
| *~ | |
| # Documentation (large files) | |
| *.md | |
| !README.md | |
| FASE_*.md | |
| # Tests | |
| tests/ | |
| test_*.py | |
| # Logs | |
| logs/ | |
| *.log | |
| # Temporary | |
| tmp/ | |
| temp/ | |
| .DS_Store | |
| # Old versions | |
| *_backup.py | |
| *_old.py | |
| *.old | |