requirements.txt 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Python version requirement: >= 3.8
  2. # Core Flask dependencies
  3. flask>=3.0.0
  4. flask-cors>=4.0.0
  5. werkzeug>=3.0.0
  6. wqb>=0.2.5
  7. # HTTP requests
  8. requests>=2.28.0
  9. # Data processing
  10. pandas>=2.0.0
  11. # Jupyter and notebook support
  12. jupyter>=1.0.0
  13. notebook>=7.0.0
  14. ipykernel>=6.20.0
  15. # PDF processing
  16. PyPDF2>=3.0.0
  17. pdfplumber>=0.9.0
  18. PyMuPDF>=1.23.0
  19. # Document processing
  20. python-docx>=1.0.0
  21. docx2txt>=0.8
  22. striprtf>=0.0.20
  23. # Text processing and parsing
  24. lxml>=4.9.0
  25. beautifulsoup4>=4.12.0
  26. # Coze API integration
  27. cozepy>=0.4.0
  28. # Optional dependencies for enhanced functionality
  29. # Image processing (if needed for future features)
  30. # Pillow>=10.0.0
  31. # Development and testing (optional)
  32. # pytest>=7.0.0
  33. # pytest-cov>=4.0.0
  34. # Performance monitoring (optional)
  35. # psutil>=5.9.0