.gitignore


# ============================================================================
# PYTHON
# ============================================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy


# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints
*.ipynb

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
Pipfile.lock

# poetry
poetry.lock

# pdm
.pdm.toml

# PEP 582
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject


# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/


# ============================================================================
# IDEs & EDITORS
# ============================================================================

# PyCharm
.idea/
*.iml
*.iws
.idea_modules/

# VSCode
.vscode/
*.code-workspace
.history/

# Sublime Text
*.sublime-project
*.sublime-workspace

# Vim
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
*.swp
*.swo
*~
.netrwhist

# Emacs
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp

# Eclipse
.project
.pydevproject
.settings/


# ============================================================================
# OPERATING SYSTEMS
# ============================================================================

# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk

# Linux
.fuse_hidden*
.directory
.Trash-*
.nfs*


# ============================================================================
# PROJECT SPECIFIC
# ============================================================================

# Generated images/audio/text files from testing
*.jpg
*.jpeg
*.png
*.gif
*.webp
*.mp3
*.wav
*.ogg
*.txt
!requirements.txt
!README.txt

# Test outputs
test_output/
output/
temp/
tmp/

# Logs
*.log
logs/

# Database
*.db
*.sqlite
*.sqlite3

# Backup files
*.bak
*.backup
*.old

# Temporary files
*.tmp
*.temp


# ============================================================================
# BUILD & DEPLOYMENT
# ============================================================================

# Wheel files
*.whl

# pip
pip-wheel-metadata/


# ============================================================================
# DOCUMENTATION
# ============================================================================

# Sphinx
docs/_build/
docs/.doctrees/
docs/_static/
docs/_templates/

# MkDocs
site/


# ============================================================================
# SECURITY & CREDENTIALS
# ============================================================================

# Environment variables
.env
.env.local
.env.*.local
.envrc

# API keys and secrets
secrets.json
credentials.json
*.key
*.pem
*.cert

# SSH keys
id_rsa
id_rsa.pub
*.pub


# ============================================================================
# MISC
# ============================================================================

# Compressed files
*.zip
*.tar
*.tar.gz
*.rar
*.7z

# Archives
archive/
old/

# Node.js (if using any JS tools)
node_modules/
package-lock.json

# Config files (keep templates only)
config.json
settings.json
!config.example.json
!settings.example.json