.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # Virtual environments
  27. .venv
  28. venv/
  29. env/
  30. .env
  31. # PyInstaller
  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. # Jupyter Notebook
  51. .ipynb_checkpoints
  52. # mypy
  53. .mypy_cache/
  54. .dmypy.json
  55. dmypy.json
  56. # Pyre type checker
  57. .pyre/
  58. # FastAPI / Uvicorn logs
  59. logs/
  60. *.log
  61. # Local config
  62. *.local.json
  63. *.local.yaml
  64. *.local.yml
  65. .env.*
  66. # Production config (should not be committed)
  67. config.prod.json
  68. config.prod.yaml
  69. config.prod.yml
  70. config.production.json
  71. config.production.yaml
  72. config.production.yml
  73. # Editor / IDE
  74. .vscode/
  75. .idea/
  76. *.swp
  77. *.swo
  78. # Project specific: temporary and output directories
  79. output/
  80. tmp/
  81. temp/
  82. **/extracted_tables/
  83. **/merged_tables/
  84. **/filtered_tables/
  85. **/converted_pdfs/