# --- Python ---
__pycache__/
*.py[cod]
*$py.class
.Python
*.egg
*.egg-info/
.eggs/
dist/
build/
wheelhouse/
pip-wheel-metadata/

# Virtual environments (anywhere in the repo)
.venv/
venv/
ENV/
env/
src/venv/

# Test / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.hypothesis/
*.cover
/tests/test_create_pvfs_file*

# Type checkers / linters
.mypy_cache/
.ruff_cache/
.dmypy.json
dmypy.json

# Jupyter
.ipynb_checkpoints/

# --- Native build (CMake / MSVC) ---
# Build artifacts are produced on demand by scikit-build-core during
# `pip install` / `python -m build` / cibuildwheel and must NEVER be
# committed (doing so is what caused pypvfs 1.0.1 to ship Ubuntu-24.04-
# glibc-bound .so files on PyPI).
src/pvfs_tools/Core/*.so
src/pvfs_tools/Core/*.dll
src/pvfs_tools/Core/*.dylib
src/pvfs_tools/Core/*.lib
src/pvfs_tools/Core/*.exp
src/pvfs_tools/Core/*.pdb
src/pvfs_tools/Core/build/
src/pvfs_tools/Core/build_linux/
src/pvfs_tools/Core/build_x64/
src/pvfs_tools/Core/CMakeFiles/
src/pvfs_tools/Core/CMakeCache.txt
src/pvfs_tools/Core/cmake_install.cmake
src/pvfs_tools/Core/Makefile
src/pvfs_tools/Core/*.dir/
src/pvfs_tools/Core/x64/
src/pvfs_tools/Core/Release/
src/pvfs_tools/Core/Debug/
src/pvfs_tools/Core/*.vcxproj*
src/pvfs_tools/Core/*.sln

# scikit-build-core build tree at the repo root
/build/
/_skbuild/

# --- IDE / editor ---
.vscode/
.idea/
*.swp
*.swo
*~

# --- OS ---
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini

# --- Secrets & local config (never commit) ---
.env
.env.*
!.env.example
*.pem
.pypirc

# --- Misc generated / scratch ---
*.log
*.tmp
temp.*
*.bkp
*.dtmp
