# Automatically normalize line endings for all text-based files
# https://git-scm.com/docs/gitattributes#_end_of_line_conversion

* text=auto

# Line endings
# ============
.*      text eol=lf
*.css   text eol=lf
*.html  text eol=lf
*.js    text eol=lf
*.json  text eol=lf
*.md    text eol=lf
*.sh    text eol=lf
*.txt   text eol=lf
*.xml   text eol=lf

# Source files
# ============
*.pxd		text
*.py 		text
*.py3 	text
*.pyw 	text
*.pyx  	text

# Binary files
# ============
*.db		binary
*.p 		binary
*.pkl 	binary
*.pyc 	binary
*.pyd   binary
*.pyo   binary
*.bmpr  binary
*.h5    binary

# LFS
# ===
*.whl filter=lfs diff=lfs merge=lfs -text
*.h5  filter=lfs diff=lfs merge=lfs -text
