# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb


!/tests/data/*.pdb


# 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 autogenerated API reference
/doc/apidoc

# Ignore autogenerated example gallery
/doc/examples/gallery
/doc/examples/backreferences

# Ignore autogenerated tutorial
/doc/tutorial/target

# 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 fuse_hidden files on Linux systems
*.fuse_hidden*