From b478a95ad7e4e22362f96a06dbfa36755a8ce964 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 10 Oct 2025 11:31:02 +0200 Subject: [PATCH] gitignore --- .gitignore | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aecd6dd --- /dev/null +++ b/.gitignore @@ -0,0 +1,81 @@ +# Python artifacts +*.py[cod] +*$py.class +*.so +__pycache__/ +*.pyc +*.pyo +*.pyd +.Python +pip-log.txt +pip-delete-this-directory.txt + +# Virtual environments +venv/ +env/ +ENV/ +.venv/ +env.bak/ +venv.bak/ + +# Testing artifacts +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +.tox/ +.hypothesis/ +*.cover +*.log +.cache/ + +# Build artifacts +build/ +dist/ +*.egg-info/ +*.egg +*.whl + +# IDE and Editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.project +.pydevproject +.settings/ +*.sublime-project +*.sublime-workspace + +# OS-specific files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +desktop.ini + +# Blender-specific files +*.blend1 +*.blend2 +*.blend3 +*.blend@ + +# Project-specific directories and files +text_texture_generator/ +.benchmarks/ + +# Marketing - Large binary files +marketing/screenrecords/*.mp4 +marketing/voice/*.wav +marketing/*.psd + +# Temporary files +*.tmp +*.temp +*.bak +*.swp +*~.nib \ No newline at end of file