requirements.txt 500 B

12345678910111213141516171819202122232425262728293031323334
  1. # Flask and extensions
  2. Flask==3.0.0
  3. Flask-SQLAlchemy==3.1.1
  4. Flask-Migrate==4.0.5
  5. Flask-CORS==4.0.0
  6. # Database - Updated for Python 3.14 compatibility
  7. SQLAlchemy>=2.0.25
  8. # PostgreSQL driver
  9. psycopg2-binary>=2.9.9
  10. # Authentication
  11. PyJWT==2.8.0
  12. bcrypt==4.1.1
  13. # Task Queue
  14. celery==5.3.4
  15. redis==5.0.1
  16. # AWS SDK
  17. boto3>=1.34.0
  18. botocore>=1.34.0
  19. # Document processing
  20. python-docx==1.1.0
  21. # Utilities
  22. python-dotenv==1.0.0
  23. cryptography>=41.0.8
  24. # Testing
  25. pytest>=7.4.3
  26. pytest-cov==4.1.0
  27. hypothesis>=6.92.1