.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. # Created by https://www.gitignore.io/api/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. MANIFEST
  27. .idea/
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .nox/
  40. .coverage
  41. .coverage.*
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. *.cover
  46. .hypothesis/
  47. .pytest_cache/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. # Flask stuff:
  56. instance/
  57. .webassets-cache
  58. # Scrapy stuff:
  59. .scrapy
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # Jupyter Notebook
  65. .ipynb_checkpoints
  66. # IPython
  67. profile_default/
  68. ipython_config.py
  69. # pyenv
  70. .python-version
  71. # celery beat schedule file
  72. celerybeat-schedule
  73. # SageMath parsed files
  74. *.sage.py
  75. # Environments
  76. .env
  77. .venv
  78. env/
  79. venv/
  80. ENV/
  81. env.bak/
  82. venv.bak/
  83. # Spyder project settings
  84. .spyderproject
  85. .spyproject
  86. # Rope project settings
  87. .ropeproject
  88. # mkdocs documentation
  89. /site
  90. # mypy
  91. .mypy_cache/
  92. .dmypy.json
  93. dmypy.json
  94. ### Python Patch ###
  95. .venv/
  96. ### Python.VirtualEnv Stack ###
  97. # Virtualenv
  98. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  99. [Bb]in
  100. [Ii]nclude
  101. [Ll]ib
  102. [Ll]ib64
  103. [Ll]ocal
  104. [Ss]cripts
  105. pyvenv.cfg
  106. pip-selfcheck.json
  107. # End of https://www.gitignore.io/api/python