Files
biopython/.gitignore
2009-05-05 08:49:59 +00:00

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