2026-06-23 19:57:49 +01:00
|
|
|
# Core dependencies
|
|
|
|
|
Flask==2.3.3
|
|
|
|
|
Flask-Babel==2.0.0
|
2026-06-24 22:16:35 +01:00
|
|
|
python-dotenv==1.0.0
|
2026-06-23 19:57:49 +01:00
|
|
|
|
|
|
|
|
# Database
|
2026-06-24 22:16:35 +01:00
|
|
|
# sqlite3 is built-in with Python
|
2026-06-23 19:57:49 +01:00
|
|
|
|
|
|
|
|
# For CSV processing
|
2026-06-24 22:16:35 +01:00
|
|
|
# No additional dependencies needed (csv is built-in)
|
2026-06-23 19:57:49 +01:00
|
|
|
|
|
|
|
|
# For development/testing
|
|
|
|
|
pytest==7.4.0
|
|
|
|
|
pytest-cov==4.1.0
|
|
|
|
|
|
2026-06-24 22:16:35 +01:00
|
|
|
# For running the application in production
|
2026-06-23 19:57:49 +01:00
|
|
|
waitress==2.1.2 # Production WSGI server
|
2026-06-24 22:16:35 +01:00
|
|
|
|
|
|
|
|
# For production deployment (optional)
|
|
|
|
|
# gunicorn==21.2.0 # Alternative WSGI server
|