# Git .git .gitignore # Virtual Environment .venv venv/ env/ # IDE .vscode/ .idea/ *.swp *.swo *~ # Python __pycache__/ *.py[cod] *$py.class *.so .pytest_cache/ .mypy_cache/ # Build and distribution build/ dist/ *.egg-info/ # Local development *.local # Environment files (except example) .env !.env.example # Logs and databases *.log *.sqlite *.sqlite3 # OS generated files .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Project specific exclusions modal_inference/ tests/ api/ modal_client.py *.ipynb README1.MD