.gitignore 3.2 KB

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