.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # User (Nikita Leshtaev) defined packages to ignore
  2. /.pytest_cache/
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. # C extensions
  7. *.so
  8. # log files
  9. *.out
  10. # Distribution / packaging
  11. .Python
  12. env/
  13. venv/
  14. build/
  15. develop-eggs/
  16. dist/
  17. downloads/
  18. eggs/
  19. .eggs/
  20. lib/
  21. lib64/
  22. parts/
  23. sdist/
  24. var/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  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. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. # Sphinx documentation
  51. docs/_build/
  52. # PyBuilder
  53. target/
  54. # DotEnv configuration
  55. *.env
  56. # Database
  57. *.db
  58. *.rdb
  59. # Pycharm
  60. .idea
  61. # VS Code
  62. .vscode/
  63. # Spyder
  64. .spyproject/
  65. # Jupyter NB Checkpoints
  66. .ipynb_checkpoints/
  67. *.ipynb
  68. # exclude data from source control by default
  69. /data/
  70. # Mac OS-specific storage files
  71. .DS_Store
  72. # vim
  73. *.swp
  74. *.swo
  75. # Mypy cache
  76. .mypy_cache/
  77. # Auxiliary docker files
  78. env.docker