# ============================================================
# Python
# ============================================================

__pycache__/
*.py[cod]
*$py.class

*.so

.venv/
venv/
env/

.pytest_cache/
.mypy_cache/
.ruff_cache/

# ============================================================
# Build artifacts
# ============================================================

build/
dist/
*.egg-info/

_wheels/
wheelhouse/

# ============================================================
# CMake
# ============================================================

CMakeCache.txt
CMakeFiles/
cmake_install.cmake
install_manifest.txt

compile_commands.json
CTestTestfile.cmake
Testing/

Makefile

# Ninja
.ninja_deps
.ninja_log
build.ninja

# ============================================================
# IDE
# ============================================================

.vscode/
.idea/

# ============================================================
# Editors
# ============================================================

*.swp
*.swo
*~

# ============================================================
# OS
# ============================================================

.DS_Store
Thumbs.db

# ============================================================
# Termux
# ============================================================

.termux/

# ============================================================
# Coverage
# ============================================================

.coverage
coverage.xml
htmlcov/

# ============================================================
# Profiling
# ============================================================

*.prof
*.gmon

# ============================================================
# Debuggers
# ============================================================

core
core.*

# ============================================================
# Logs
# ============================================================

*.log
