.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. #Custom gitignore
  2. saved_models/
  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. 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. cover/
  50. # Translations
  51. *.mo
  52. *.pot
  53. # Django stuff:
  54. *.log
  55. local_settings.py
  56. db.sqlite3
  57. db.sqlite3-journal
  58. # Flask stuff:
  59. instance/
  60. .webassets-cache
  61. # Scrapy stuff:
  62. .scrapy
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. .pybuilder/
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # IPython
  71. profile_default/
  72. ipython_config.py
  73. # pyenv
  74. # For a library or package, you might want to ignore these files since the code is
  75. # intended to run in multiple environments; otherwise, check them in:
  76. # .python-version
  77. # pipenv
  78. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  79. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  80. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  81. # install all needed dependencies.
  82. #Pipfile.lock
  83. # poetry
  84. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  85. # This is especially recommended for binary packages to ensure reproducibility, and is more
  86. # commonly ignored for libraries.
  87. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  88. #poetry.lock
  89. # pdm
  90. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  91. #pdm.lock
  92. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  93. # in version control.
  94. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  95. .pdm.toml
  96. .pdm-python
  97. .pdm-build/
  98. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  99. __pypackages__/
  100. # Celery stuff
  101. celerybeat-schedule
  102. celerybeat.pid
  103. # SageMath parsed files
  104. *.sage.py
  105. # Environments
  106. .env
  107. .venv
  108. env/
  109. venv/
  110. ENV/
  111. env.bak/
  112. venv.bak/
  113. # Spyder project settings
  114. .spyderproject
  115. .spyproject
  116. # Rope project settings
  117. .ropeproject
  118. # mkdocs documentation
  119. /site
  120. # mypy
  121. .mypy_cache/
  122. .dmypy.json
  123. dmypy.json
  124. # Pyre type checker
  125. .pyre/
  126. # pytype static type analyzer
  127. .pytype/
  128. # Cython debug symbols
  129. cython_debug/
  130. # PyCharm
  131. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  132. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  133. # and can be added to the global gitignore or merged into this file. For a more nuclear
  134. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  135. #.idea/