# AMCL Python Bindings .gitignore

#######################
# Build Directories
#######################
build/
dist/
*.egg-info/
__pycache__/
*.py[cod]
*$py.class

# CMake build files
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
*.cmake
!CMakeLists.txt

# Compiled binaries
*.so
*.dylib
*.dll
*.exe
*.out
*.app

# Static libraries
*.a
*.lib

# Object files
*.o
*.obj
*.lo
*.slo

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

# pipenv
Pipfile.lock

# poetry
poetry.lock

# conda
.conda/

#######################
# Python Development
#######################
# 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/
pip-wheel-metadata/
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
*.py,cover
.hypothesis/
.pytest_cache/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

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

# Pyre type checker
.pyre/

#######################
# IDE and Editor Files
#######################
# VSCode
.vscode/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

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

# Vim
*.swp
*.swo
*~

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

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

# Atom
.atom/

#######################
# Operating System
#######################
# 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
*.tmp
*.temp
*.log
*.lnk
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.exe

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

#######################
# Documentation
#######################
# Sphinx documentation
docs/_build/
docs/_static/
docs/_templates/
.sphinx/

# mkdocs documentation
/site

# Doxygen
html/
latex/

#######################
# Temporary and Log Files
#######################
*.log
*.tmp
*.temp
*.pid
*.seed
*.pid.lock
*.tgz
*.tar.gz

# nanobind temporary files
.nanobind/

# setuptools_scm version files
src/*/version.py
*/_version.py

#######################
# Package Files
#######################
# Wheels
*.whl

# Archives
*.zip
*.tar
*.tar.gz
*.tar.bz2
*.tar.xz
*.rar
*.7z

#######################
# Database Files
#######################
*.db
*.sqlite
*.sqlite3

#######################
# Configuration Files (keep templates)
#######################
config.ini
config.yaml
config.json
!config.template.*
!config.example.*

# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

#######################
# Project Specific
#######################
# Test output
test_results/
test_output/
*.test

# Performance benchmarks
benchmarks/results/
*.perf

# Generated files
generated/
output/

# Robot data
*.bag
*.rosbag
maps/*.pgm
maps/*.yaml
logs/

# AMCL specific
particle_data/
localization_logs/

#######################
# Security
#######################
# SSH keys
*.pem
*.key
id_rsa
id_dsa
id_ecdsa
id_ed25519

# Certificates
*.crt
*.cert
*.cer
*.p12
*.pfx

#######################
# Keep These Files
#######################
!.gitignore
!README.md
!LICENSE
!CHANGELOG.md
!requirements.txt
!setup.py
!setup.cfg
!pyproject.toml
!CMakeLists.txt
!*.hpp
!*.cpp
!*.c
!*.h

# Cibuildwheel
wheelhouse/