.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. 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. pip-wheel-metadata/
  23. share/python-wheels/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. MANIFEST
  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. *.py,cover
  47. .hypothesis/
  48. .pytest_cache/
  49. pytestdebug.log
  50. # Translations
  51. *.mo
  52. *.pot
  53. # Sphinx documentation
  54. docs/_build/
  55. doc/_build/
  56. # PyBuilder
  57. target/
  58. # IPython
  59. profile_default/
  60. ipython_config.py
  61. # pyenv
  62. .python-version
  63. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  64. __pypackages__/
  65. # Environments
  66. .env
  67. .venv
  68. env/
  69. venv/
  70. ENV/
  71. env.bak/
  72. venv.bak/
  73. pythonenv*
  74. # Spyder project settings
  75. .spyderproject
  76. .spyproject
  77. # Rope project settings
  78. .ropeproject
  79. # mypy
  80. .mypy_cache/
  81. .dmypy.json
  82. dmypy.json
  83. # Pyre type checker
  84. .pyre/
  85. # pytype static type analyzer
  86. .pytype/
  87. # profiling data
  88. .prof