Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

.gitignore 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.ipynb_checkpoints/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. env/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *,cover
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. # Sphinx documentation
  49. docs/_build/
  50. # PyBuilder
  51. target/
  52. # ---> R
  53. # History files
  54. .Rhistory
  55. .Rapp.history
  56. # Example code in package build process
  57. *-Ex.R
  58. # RStudio files
  59. .Rproj.user/
  60. # produced vignettes
  61. vignettes/*.html
  62. vignettes/*.pdf
  63. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  64. .httr-oauth
  65. # ---> Matlab
  66. ##---------------------------------------------------
  67. ## Remove autosaves generated by the Matlab editor
  68. ## We have git for backups!
  69. ##---------------------------------------------------
  70. # Windows default autosave extension
  71. *.asv
  72. # OSX / *nix default autosave extension
  73. *.m~
  74. # Compiled MEX binaries (all platforms)
  75. *.mex*
  76. # Simulink Code Generation
  77. slprj/
  78. # ---> IGORPro
  79. # Avoid including Experiment files: they can be created and edited locally to test the ipf files
  80. *.pxp
  81. *.pxt
  82. *.uxp
  83. *.uxt
  84. # ---> Vim
  85. [._]*.s[a-w][a-z]
  86. [._]s[a-w][a-z]
  87. *.un~
  88. Session.vim
  89. .netrwhist
  90. *~
  91. # ---> MicrosoftOffice
  92. *.tmp
  93. # Word temporary
  94. ~$*.doc*
  95. # Excel temporary
  96. ~$*.xls*
  97. # Excel Backup File
  98. *.xlk
  99. # ---> TeX
  100. ## Core latex/pdflatex auxiliary files:
  101. *.aux
  102. *.lof
  103. *.log
  104. *.lot
  105. *.fls
  106. *.out
  107. *.toc
  108. ## Intermediate documents:
  109. *.dvi
  110. *-converted-to.*
  111. # these rules might exclude image files for figures etc.
  112. # *.ps
  113. # *.eps
  114. # *.pdf
  115. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  116. *.bbl
  117. *.bcf
  118. *.blg
  119. *-blx.aux
  120. *-blx.bib
  121. *.brf
  122. *.run.xml
  123. ## Build tool auxiliary files:
  124. *.fdb_latexmk
  125. *.synctex
  126. *.synctex.gz
  127. *.synctex.gz(busy)
  128. *.pdfsync
  129. ## Auxiliary and intermediate files from other packages:
  130. # algorithms
  131. *.alg
  132. *.loa
  133. # achemso
  134. acs-*.bib
  135. # amsthm
  136. *.thm
  137. # beamer
  138. *.nav
  139. *.snm
  140. *.vrb
  141. #(e)ledmac/(e)ledpar
  142. *.end
  143. #*.[1-9]
  144. #*.[1-9][0-9]
  145. #*.[1-9][0-9][0-9]
  146. #*.[1-9]R
  147. #*.[1-9][0-9]R
  148. #*.[1-9][0-9][0-9]R
  149. *.eledsec[1-9]
  150. *.eledsec[1-9]R
  151. *.eledsec[1-9][0-9]
  152. *.eledsec[1-9][0-9]R
  153. *.eledsec[1-9][0-9][0-9]
  154. *.eledsec[1-9][0-9][0-9]R
  155. # glossaries
  156. *.acn
  157. *.acr
  158. *.glg
  159. *.glo
  160. *.gls
  161. # gnuplottex
  162. *-gnuplottex-*
  163. # hyperref
  164. *.brf
  165. # knitr
  166. *-concordance.tex
  167. *.tikz
  168. *-tikzDictionary
  169. # listings
  170. *.lol
  171. # makeidx
  172. *.idx
  173. *.ilg
  174. *.ind
  175. *.ist
  176. # minitoc
  177. *.maf
  178. *.mtc
  179. *.mtc[0-9]
  180. *.mtc[1-9][0-9]
  181. # minted
  182. _minted*
  183. *.pyg
  184. # morewrites
  185. *.mw
  186. # mylatexformat
  187. *.fmt
  188. # nomencl
  189. *.nlo
  190. # sagetex
  191. *.sagetex.sage
  192. *.sagetex.py
  193. *.sagetex.scmd
  194. # sympy
  195. *.sout
  196. *.sympy
  197. sympy-plots-for-*.tex/
  198. # TikZ & PGF
  199. *.dpth
  200. *.md5
  201. *.auxlock
  202. # todonotes
  203. *.tdo
  204. # xindy
  205. *.xdy
  206. # WinEdt
  207. *.bak
  208. *.sav