requirements.txt 481 B

1234567891011121314151617181920212223242526
  1. # Flask and extensions
  2. Flask==3.0.0
  3. Flask-SQLAlchemy==3.1.1
  4. Flask-RESTX==1.3.0
  5. Flask-CORS==4.0.0
  6. Flask-Bcrypt==1.0.1
  7. # Authentication
  8. PyJWT==2.8.0
  9. # Database
  10. SQLAlchemy>=2.0.36
  11. # Excel export
  12. openpyxl==3.1.2
  13. # Testing
  14. pytest==7.4.3
  15. hypothesis==6.92.1
  16. # Production server
  17. gunicorn==21.2.0; sys_platform != 'win32'
  18. waitress==2.1.2; sys_platform == 'win32'
  19. # PostgreSQL driver (not needed for local SQLite development on Windows)
  20. psycopg2-binary==2.9.9; sys_platform != 'win32'