1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
# Ignore python bytecoded files
*.py[cod]
*.[oa]
*~
*.bak
*.so
MDAnalysis.egg-info
MDAnalysisTests.egg-info
*.egg
*.profraw
# Ignore build dir
build/
dist/
temp/
examples/eigenvalues.dat
examples/output.txt
.project
.pydevproject
.settings
.eggs
# ignore Vagrant virtual machines
.vagrant
# ignore coverage files
.coverage*
!.coveragerc
.noseids
htmlcov
# ignore trajectory offset caches
.adk_oplsaa.trr_offsets.pkl
.adk_oplsaa.xtc_offsets.pkl
.gram_A_identical_frames.xtc_offsets.pkl
*.npz
# Ignore html build
package/doc/html/
# Ignore MDAnalysis log files
MDAnalysis.log
# Ignore the authors.py files as they are generated files
authors.py
# Ignore the .DS_Store file in the osx file system
*.DS_Store
# ignore files from tests
.hypothesis/
# ignore results from asv
benchmarks/results
# duecredit
.duecredit.p
# editors and IDEs
*.sw[a-z]
*~
.idea
.vscode
*.lock
|