.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. .idea/
  2. __pycache__/
  3. .~lock* # Calc lock files
  4. # Project related items #
  5. .idea
  6. # Byte-compiled / optimized / DLL files #
  7. __pycache__/
  8. *.py[cod]
  9. *$py.class
  10. # C extensions #
  11. *.so
  12. # Distribution / packaging #
  13. .Python
  14. build/
  15. develop-eggs/
  16. dist/
  17. downloads/
  18. eggs/
  19. .eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. wheels/
  26. pip-wheel-metadata/
  27. share/python-wheels/
  28. *.egg-info/
  29. .installed.cfg
  30. *.egg
  31. MANIFEST
  32. # PyInstaller #
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs #
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports #
  41. htmlcov/
  42. .tox/
  43. .nox/
  44. .coverage
  45. .coverage.*
  46. .cache
  47. nosetests.xml
  48. coverage.xml
  49. *.cover
  50. *.py,cover
  51. .hypothesis/
  52. .pytest_cache/
  53. # Translations #
  54. *.mo
  55. *.pot
  56. # Django stuff #
  57. *.log
  58. local_settings.py
  59. db.sqlite3
  60. db.sqlite3-journal
  61. # Flask stuff #
  62. instance/
  63. .webassets-cache
  64. # Scrapy stuff #
  65. .scrapy
  66. # Sphinx documentation #
  67. doc/_build/
  68. # PyBuilder #
  69. target/
  70. # Jupyter Notebook #
  71. .ipynb_checkpoints
  72. # IPython #
  73. profile_default/
  74. ipython_config.py
  75. # pyenv #
  76. .python-version
  77. # pipenv #
  78. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  79. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  80. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  81. # install all needed dependencies.
  82. #Pipfile.lock
  83. # PEP 582; used by e.g. github.com/David-OConnor/pyflow #
  84. __pypackages__/
  85. # Celery stuff #
  86. celerybeat-schedule
  87. celerybeat.pid
  88. # SageMath parsed files #
  89. *.sage.py
  90. # Environments #
  91. .env
  92. .venv
  93. env/
  94. venv/
  95. ENV/
  96. env.bak/
  97. venv.bak/
  98. # Spyder project settings #
  99. .spyderproject
  100. .spyproject
  101. # Rope project settings #
  102. .ropeproject
  103. # mkdocs documentation #
  104. /site
  105. # mypy #
  106. .mypy_cache/
  107. .dmypy.json
  108. dmypy.json
  109. # Pyre type checker #
  110. .pyre/
  111. # Compiled source #
  112. *.com
  113. *.class
  114. *.dll
  115. *.exe
  116. *.o
  117. *.so
  118. # Packages #
  119. # it's better to unpack these files and commit the raw source
  120. # git has its own built in compression methods
  121. *.7z
  122. *.dmg
  123. *.gz
  124. *.iso
  125. *.jar
  126. *.rar
  127. *.tar
  128. *.zip
  129. # Logs and databases #
  130. *.log
  131. *.sql
  132. *.sqlite
  133. # OS generated files #
  134. ######################
  135. .DS_Store
  136. .DS_Store?
  137. ._*
  138. .Spotlight-V100
  139. .Trashes
  140. ehthumbs.db
  141. Thumbs.db
  142. # History files
  143. .Rhistory
  144. .Rapp.history
  145. # Session Data files
  146. .RData
  147. .RDataTmp
  148. # User-specific files
  149. .Ruserdata
  150. # Example code in package build process
  151. *-Ex.R
  152. # Output files from R CMD build
  153. /*.tar.gz
  154. # Output files from R CMD check
  155. /*.Rcheck/
  156. # RStudio files
  157. .Rproj.user/
  158. # produced vignettes
  159. vignettes/*.html
  160. vignettes/*.pdf
  161. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  162. .httr-oauth
  163. # knitr and R markdown default cache directories
  164. *_cache/
  165. /cache/
  166. # Temporary files created by R markdown
  167. *.utf8.md
  168. *.knit.md
  169. # R Environment Variables
  170. .Renviron
  171. # pkgdown site
  172. docs/
  173. # translation temp files
  174. po/*~
  175. # RStudio Connect folder
  176. rsconnect/