.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. # Disco-specfic ignores
  2. init_images/*
  3. images_out/*
  4. MiDaS/
  5. models/
  6. pretrained/*
  7. settings.json
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. .Python
  16. build/
  17. develop-eggs/
  18. dist/
  19. downloads/
  20. eggs/
  21. .eggs/
  22. lib/
  23. lib64/
  24. parts/
  25. sdist/
  26. var/
  27. wheels/
  28. share/python-wheels/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. MANIFEST
  33. # PyInstaller
  34. # Usually these files are written by a python script from a template
  35. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  36. *.manifest
  37. *.spec
  38. # Installer logs
  39. pip-log.txt
  40. pip-delete-this-directory.txt
  41. # Unit test / coverage reports
  42. htmlcov/
  43. .tox/
  44. .nox/
  45. .coverage
  46. .coverage.*
  47. .cache
  48. nosetests.xml
  49. coverage.xml
  50. *.cover
  51. *.py,cover
  52. .hypothesis/
  53. .pytest_cache/
  54. cover/
  55. # Translations
  56. *.mo
  57. *.pot
  58. # Django stuff:
  59. *.log
  60. local_settings.py
  61. db.sqlite3
  62. db.sqlite3-journal
  63. # Flask stuff:
  64. instance/
  65. .webassets-cache
  66. # Scrapy stuff:
  67. .scrapy
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. .pybuilder/
  72. target/
  73. # Jupyter Notebook
  74. .ipynb_checkpoints
  75. # IPython
  76. profile_default/
  77. ipython_config.py
  78. # pyenv
  79. # For a library or package, you might want to ignore these files since the code is
  80. # intended to run in multiple environments; otherwise, check them in:
  81. # .python-version
  82. # pipenv
  83. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  84. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  85. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  86. # install all needed dependencies.
  87. #Pipfile.lock
  88. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  89. __pypackages__/
  90. # Celery stuff
  91. celerybeat-schedule
  92. celerybeat.pid
  93. # SageMath parsed files
  94. *.sage.py
  95. # Environments
  96. .env
  97. .venv
  98. env/
  99. venv/
  100. ENV/
  101. env.bak/
  102. venv.bak/
  103. # Spyder project settings
  104. .spyderproject
  105. .spyproject
  106. # Rope project settings
  107. .ropeproject
  108. # mkdocs documentation
  109. /site
  110. # mypy
  111. .mypy_cache/
  112. .dmypy.json
  113. dmypy.json
  114. # Pyre type checker
  115. .pyre/
  116. # pytype static type analyzer
  117. .pytype/
  118. # Cython debug symbols
  119. cython_debug/