.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. #Custom gitignore
  2. saved_models/
  3. nohup.out
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. wheels/
  24. share/python-wheels/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. MANIFEST
  29. # PyInstaller
  30. # Usually these files are written by a python script from a template
  31. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  32. *.manifest
  33. *.spec
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .coverage
  42. .coverage.*
  43. .cache
  44. nosetests.xml
  45. coverage.xml
  46. *.cover
  47. *.py,cover
  48. .hypothesis/
  49. .pytest_cache/
  50. cover/
  51. # Translations
  52. *.mo
  53. *.pot
  54. # Django stuff:
  55. *.log
  56. local_settings.py
  57. db.sqlite3
  58. db.sqlite3-journal
  59. # Flask stuff:
  60. instance/
  61. .webassets-cache
  62. # Scrapy stuff:
  63. .scrapy
  64. # Sphinx documentation
  65. docs/_build/
  66. # PyBuilder
  67. .pybuilder/
  68. target/
  69. # Jupyter Notebook
  70. .ipynb_checkpoints
  71. # IPython
  72. profile_default/
  73. ipython_config.py
  74. # pyenv
  75. # For a library or package, you might want to ignore these files since the code is
  76. # intended to run in multiple environments; otherwise, check them in:
  77. # .python-version
  78. # pipenv
  79. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  80. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  81. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  82. # install all needed dependencies.
  83. #Pipfile.lock
  84. # poetry
  85. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  86. # This is especially recommended for binary packages to ensure reproducibility, and is more
  87. # commonly ignored for libraries.
  88. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  89. #poetry.lock
  90. # pdm
  91. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  92. #pdm.lock
  93. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  94. # in version control.
  95. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  96. .pdm.toml
  97. .pdm-python
  98. .pdm-build/
  99. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  100. __pypackages__/
  101. # Celery stuff
  102. celerybeat-schedule
  103. celerybeat.pid
  104. # SageMath parsed files
  105. *.sage.py
  106. # Environments
  107. .env
  108. .venv
  109. env/
  110. venv/
  111. ENV/
  112. env.bak/
  113. venv.bak/
  114. # Spyder project settings
  115. .spyderproject
  116. .spyproject
  117. # Rope project settings
  118. .ropeproject
  119. # mkdocs documentation
  120. /site
  121. # mypy
  122. .mypy_cache/
  123. .dmypy.json
  124. dmypy.json
  125. # Pyre type checker
  126. .pyre/
  127. # pytype static type analyzer
  128. .pytype/
  129. # Cython debug symbols
  130. cython_debug/
  131. # PyCharm
  132. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  133. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  134. # and can be added to the global gitignore or merged into this file. For a more nuclear
  135. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  136. #.idea/