.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # Editors
  2. .vscode/
  3. .idea/
  4. # Vagrant
  5. .vagrant/
  6. # Mac/OSX
  7. .DS_Store
  8. # Windows
  9. Thumbs.db
  10. # Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
  11. # Byte-compiled / optimized / DLL files
  12. __pycache__/
  13. *.py[cod]
  14. *$py.class
  15. # C extensions
  16. *.so
  17. # Distribution / packaging
  18. .Python
  19. build/
  20. develop-eggs/
  21. dist/
  22. downloads/
  23. eggs/
  24. .eggs/
  25. lib/
  26. lib64/
  27. parts/
  28. sdist/
  29. var/
  30. wheels/
  31. *.egg-info/
  32. .installed.cfg
  33. *.egg
  34. MANIFEST
  35. # PyInstaller
  36. # Usually these files are written by a python script from a template
  37. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  38. *.manifest
  39. *.spec
  40. # Installer logs
  41. pip-log.txt
  42. pip-delete-this-directory.txt
  43. # Unit test / coverage reports
  44. htmlcov/
  45. .tox/
  46. .nox/
  47. .coverage
  48. .coverage.*
  49. .cache
  50. nosetests.xml
  51. coverage.xml
  52. *.cover
  53. .hypothesis/
  54. .pytest_cache/
  55. # Translations
  56. *.mo
  57. *.pot
  58. # Django stuff:
  59. *.log
  60. local_settings.py
  61. db.sqlite3
  62. # Flask stuff:
  63. instance/
  64. .webassets-cache
  65. # Scrapy stuff:
  66. .scrapy
  67. # Sphinx documentation
  68. docs/_build/
  69. # PyBuilder
  70. target/
  71. # Jupyter Notebook
  72. .ipynb_checkpoints
  73. # IPython
  74. profile_default/
  75. ipython_config.py
  76. # pyenv
  77. .python-version
  78. # celery beat schedule file
  79. celerybeat-schedule
  80. # SageMath parsed files
  81. *.sage.py
  82. # Environments
  83. .env
  84. .venv
  85. env/
  86. venv/
  87. ENV/
  88. env.bak/
  89. venv.bak/
  90. # Spyder project settings
  91. .spyderproject
  92. .spyproject
  93. # Rope project settings
  94. .ropeproject
  95. # mkdocs documentation
  96. /site
  97. # mypy
  98. .mypy_cache/
  99. .dmypy.json
  100. dmypy.json
  101. *.db