You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. env/
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *,cover
  42. .hypothesis/
  43. # Translations
  44. *.mo
  45. *.pot
  46. # Django stuff:
  47. *.log
  48. local_settings.py
  49. # Flask stuff:
  50. instance/
  51. .webassets-cache
  52. # Scrapy stuff:
  53. .scrapy
  54. # Sphinx documentation
  55. docs/_build/
  56. # PyBuilder
  57. target/
  58. # Jupyter Notebook
  59. .ipynb_checkpoints
  60. # pyenv
  61. .python-version
  62. # celery beat schedule file
  63. celerybeat-schedule
  64. # dotenv
  65. .env
  66. # virtualenv
  67. .venv/
  68. venv/
  69. ENV/
  70. # Spyder project settings
  71. .spyderproject
  72. # Rope project settings
  73. .ropeproject
  74. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  75. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  76. # User-specific stuff:
  77. .idea/workspace.xml
  78. .idea/tasks.xml
  79. # Sensitive or high-churn files:
  80. .idea/dataSources/
  81. .idea/dataSources.ids
  82. .idea/dataSources.xml
  83. .idea/dataSources.local.xml
  84. .idea/sqlDataSources.xml
  85. .idea/dynamic.xml
  86. .idea/uiDesigner.xml
  87. # Gradle:
  88. .idea/gradle.xml
  89. .idea/libraries
  90. # Mongo Explorer plugin:
  91. .idea/mongoSettings.xml
  92. ## File-based project format:
  93. *.iws
  94. ## Plugin-specific files:
  95. # IntelliJ
  96. /out/
  97. # mpeltonen/sbt-idea plugin
  98. .idea_modules/
  99. # JIRA plugin
  100. atlassian-ide-plugin.xml
  101. # Crashlytics plugin (for Android Studio and IntelliJ)
  102. com_crashlytics_export_strings.xml
  103. crashlytics.properties
  104. crashlytics-build.properties
  105. fabric.properties
  106. /config.json