.gitignore
1 # Python 2 __pycache__/ 3 *.py[cod] 4 *$py.class 5 *.so 6 .Python 7 *.egg-info/ 8 .eggs/ 9 10 # Virtual environments 11 .venv/ 12 venv/ 13 ENV/ 14 15 # IDE 16 .idea/ 17 .vscode/ 18 *.swp 19 *.swo 20 21 # OS 22 .DS_Store 23 Thumbs.db 24 25 # Cinema 4D 26 *.c4d~ 27 28 # Renders (optional - uncomment if renders should not be tracked) 29 # renders/*.gif 30 # renders/*.mp4