.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. .venv/
  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. # ---> VisualStudioCode
  53. .settings
  54. # ---> JetBrains
  55. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  56. *.iml
  57. ## Directory-based project format:
  58. .idea/
  59. # if you remove the above rule, at least ignore the following:
  60. # User-specific stuff:
  61. # .idea/workspace.xml
  62. # .idea/tasks.xml
  63. # .idea/dictionaries
  64. # Sensitive or high-churn files:
  65. # .idea/dataSources.ids
  66. # .idea/dataSources.xml
  67. # .idea/sqlDataSources.xml
  68. # .idea/dynamic.xml
  69. # .idea/uiDesigner.xml
  70. # Gradle:
  71. # .idea/gradle.xml
  72. # .idea/libraries
  73. # Mongo Explorer plugin:
  74. # .idea/mongoSettings.xml
  75. ## File-based project format:
  76. *.ipr
  77. *.iws
  78. ## Plugin-specific files:
  79. # IntelliJ
  80. /out/
  81. # mpeltonen/sbt-idea plugin
  82. .idea_modules/
  83. # JIRA plugin
  84. atlassian-ide-plugin.xml
  85. # Crashlytics plugin (for Android Studio and IntelliJ)
  86. com_crashlytics_export_strings.xml
  87. crashlytics.properties
  88. crashlytics-build.properties
  89. doc/data/
  90. logs/
  91. temp_files/