.dockerignore 3.2 KB

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