mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 13:43:47 +08:00
22 lines
490 B
Plaintext
22 lines
490 B
Plaintext
#Ignore the build directory (and its sub-directories):
|
|
build
|
|
|
|
#Ignore backup files from some Unix editors,
|
|
*~
|
|
*.swp
|
|
|
|
#Ignore these hidden files from Mac OS X
|
|
.DS_Store
|
|
|
|
#Ignore all compiled python files (e.g. from running the unit tests):
|
|
*.pyc
|
|
*.pyo
|
|
|
|
#The graphics unit tests produce output files for human inspection
|
|
#(at the time of writing, only PDF files are created but I expect
|
|
#this to change).
|
|
Tests/Graphics/*.pdf
|
|
Tests/Graphics/*.eps
|
|
Tests/Graphics/*.svg
|
|
Tests/Graphics/*.png
|