# Ignore the distribution directories
dist/
build/
doc/_build/
*.egg-info/

# Ignore folder created by mypy
.mypy_cache/

# Ignore folder created by pytest
.pytest_cache
htmlcov
.coverage
.eggs
.cache

# Ignore version file created by hatch-vcs
/src/biotraj/version.py

# Ignore files created via Cython
*.c
*.so
*.pyd

# Ignore all compiled python files (e.g. from running the unit tests)
*.pyc
*.pyo
*.py-e

# Ignore potential directory created during install
biotite.egg-info

# Ignore IntelliJ IDEA directory and project files
.idea
*.iml

# Ignore Eclipse project files
.project
.pydevproject

# Ignore Visual studio code project files
*.code-workspace
.vscode/*

# Ignore hidden OS related files
*.fuse_hidden*
.DS_Store

# Ignore temp files created via Jupyter
**/.pynb_checkpoints/

# Ignore pycache
**/__pycache__

# Ignore pycache
**/__pycache__/

# Ignore Ruff cache
**/.ruff_cache
