.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. # Created by https://www.gitignore.io/api/python,osx,windows,linux,pycharm
  2. ### Python ###
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  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. .hypothesis/
  44. # Translations
  45. *.mo
  46. *.pot
  47. # Django stuff:
  48. *.log
  49. local_settings.py
  50. # Flask instance folder
  51. instance/
  52. # Sphinx documentation
  53. docs/_build/
  54. # PyBuilder
  55. target/
  56. # IPython Notebook
  57. .ipynb_checkpoints
  58. # pyenv
  59. .python-version
  60. ### OSX ###
  61. .DS_Store
  62. .AppleDouble
  63. .LSOverride
  64. # Icon must end with two \r
  65. Icon
  66. # Thumbnails
  67. ._*
  68. # Files that might appear in the root of a volume
  69. .DocumentRevisions-V100
  70. .fseventsd
  71. .Spotlight-V100
  72. .TemporaryItems
  73. .Trashes
  74. .VolumeIcon.icns
  75. # Directories potentially created on remote AFP share
  76. .AppleDB
  77. .AppleDesktop
  78. Network Trash Folder
  79. Temporary Items
  80. .apdisk
  81. ### Windows ###
  82. # Windows image file caches
  83. Thumbs.db
  84. ehthumbs.db
  85. # Folder config file
  86. Desktop.ini
  87. # Recycle Bin used on file shares
  88. $RECYCLE.BIN/
  89. # Windows Installer files
  90. *.cab
  91. *.msi
  92. *.msm
  93. *.msp
  94. # Windows shortcuts
  95. *.lnk
  96. ### Linux ###
  97. *~
  98. # temporary files which can be created if a process still has a handle open of a deleted file
  99. .fuse_hidden*
  100. # KDE directory preferences
  101. .directory
  102. # Linux trash folder which might appear on any partition or disk
  103. .Trash-*
  104. ### PyCharm ###
  105. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  106. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  107. # User-specific stuff:
  108. .idea/workspace.xml
  109. .idea/tasks.xml
  110. .idea/dictionaries
  111. .idea/vcs.xml
  112. .idea/jsLibraryMappings.xml
  113. # Sensitive or high-churn files:
  114. .idea/dataSources.ids
  115. .idea/dataSources.xml
  116. .idea/sqlDataSources.xml
  117. .idea/dynamic.xml
  118. .idea/uiDesigner.xml
  119. # Gradle:
  120. .idea/gradle.xml
  121. .idea/libraries
  122. # Mongo Explorer plugin:
  123. .idea/mongoSettings.xml
  124. ## File-based project format:
  125. *.iws
  126. ## Plugin-specific files:
  127. # IntelliJ
  128. /out/
  129. # mpeltonen/sbt-idea plugin
  130. .idea_modules/
  131. # JIRA plugin
  132. atlassian-ide-plugin.xml
  133. # Crashlytics plugin (for Android Studio and IntelliJ)
  134. com_crashlytics_export_strings.xml
  135. crashlytics.properties
  136. crashlytics-build.properties
  137. fabric.properties
  138. ### Miscellany ###
  139. .ropeproject
  140. README.html
  141. .idea