.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. # Created by https://www.gitignore.io/api/vim,python
  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. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  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 stuff:
  51. instance/
  52. .webassets-cache
  53. # Scrapy stuff:
  54. .scrapy
  55. # Sphinx documentation
  56. docs/_build/
  57. # PyBuilder
  58. target/
  59. # Jupyter Notebook
  60. .ipynb_checkpoints
  61. # pyenv
  62. .python-version
  63. # celery beat schedule file
  64. celerybeat-schedule.*
  65. # SageMath parsed files
  66. *.sage.py
  67. # Environments
  68. .env
  69. .venv
  70. env/
  71. venv/
  72. ENV/
  73. env.bak/
  74. venv.bak/
  75. # Spyder project settings
  76. .spyderproject
  77. .spyproject
  78. # Rope project settings
  79. .ropeproject
  80. # mkdocs documentation
  81. /site
  82. # mypy
  83. .mypy_cache/
  84. ### Vim ###
  85. # swap
  86. .sw[a-p]
  87. .*.sw[a-p]
  88. # session
  89. Session.vim
  90. # temporary
  91. .netrwhist
  92. *~
  93. # auto-generated tag files
  94. tags
  95. # End of https://www.gitignore.io/api/vim,python
  96. ### Project Related ###
  97. .project
  98. .geanyprj
  99. .vscode
  100. .pydevproject
  101. .idea
  102. *.nja
  103. *.sublime-workspace
  104. *.sublime-project
  105. *.iml
  106. .directory
  107. *.cfg
  108. *.rdb
  109. *.db
  110. *.sqlite
  111. flaskbb/static/emoji/*
  112. whoosh_index
  113. .sass-cache
  114. bower_components
  115. node_modules
  116. .DS_Store
  117. .pytest_cache