mirror of
https://github.com/biopython/biopython.git
synced 2025-10-20 13:43:47 +08:00
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
#Ignore the build directory (and its sub-directories):
|
|
build
|
|
|
|
#Ignore the distribution directory
|
|
dist
|
|
|
|
#Ignore backup files from some Unix editors,
|
|
*~
|
|
*.swp
|
|
|
|
#Ignore these hidden files from Mac OS X
|
|
.DS_Store
|
|
|
|
#Ignore hidden files from Dolphin window manager
|
|
.directory
|
|
|
|
#Ignore all compiled python files (e.g. from running the unit tests):
|
|
*.pyc
|
|
*.pyo
|
|
|
|
#Ignore all Jython class files (present if using Jython)
|
|
*.class
|
|
|
|
#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
|
|
|
|
#Ignore LaTeX temp files, and compiled output
|
|
Doc/*.aux
|
|
Doc/*.log
|
|
Doc/*.out
|
|
Doc/*.toc
|
|
Doc/*/*.aux
|
|
Doc/*/*.log
|
|
Doc/*/*.out
|
|
Doc/*/*.toc
|
|
Doc/*/*/*.aux
|
|
Doc/*/*/*.log
|
|
Doc/*/*/*.out
|
|
Doc/*/*/*.toc
|
|
Doc/Tutorial.pdf
|
|
Doc/Tutorial.html
|
|
Doc/install/Installation.pdf
|
|
Doc/install/Installation.html
|
|
Doc/cookbook/motif/motif.pdf
|
|
Doc/cookbook/motif/motif.html
|
|
|
|
Ignore the hevea.sty file if present (used for HTML docs)
|
|
Doc/hevea.sty
|
|
Doc/*/hevea.sty
|
|
Doc/*/*/hevea.sty
|