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