.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .vscode
  2. # ignored files
  3. version.py
  4. # ignored files with suffix
  5. *.html
  6. # *.png
  7. # *.jpeg
  8. # *.jpg
  9. *.pt
  10. *.gif
  11. *.pth
  12. *.dat
  13. *.zip
  14. # template
  15. # Byte-compiled / optimized / DLL files
  16. __pycache__/
  17. *.py[cod]
  18. *$py.class
  19. # C extensions
  20. *.so
  21. # Distribution / packaging
  22. .Python
  23. build/
  24. develop-eggs/
  25. dist/
  26. downloads/
  27. eggs/
  28. .eggs/
  29. lib/
  30. lib64/
  31. parts/
  32. sdist/
  33. var/
  34. wheels/
  35. *.egg-info/
  36. .installed.cfg
  37. *.egg
  38. MANIFEST
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .coverage
  51. .coverage.*
  52. .cache
  53. nosetests.xml
  54. coverage.xml
  55. *.cover
  56. .hypothesis/
  57. .pytest_cache/
  58. # Translations
  59. *.mo
  60. *.pot
  61. # Django stuff:
  62. *.log
  63. local_settings.py
  64. db.sqlite3
  65. # Flask stuff:
  66. instance/
  67. .webassets-cache
  68. # Scrapy stuff:
  69. .scrapy
  70. # Sphinx documentation
  71. docs/_build/
  72. # PyBuilder
  73. target/
  74. # Jupyter Notebook
  75. .ipynb_checkpoints
  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. # project
  100. results/
  101. experiments/
  102. tb_logger/
  103. run.sh
  104. *debug*
  105. *_old*