mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-06-15 00:40:00 +00:00
18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
# requirements.txt
|
|
# List of Python packages required for the project
|
|
|
|
Flask
|
|
Flask-SQLAlchemy
|
|
Flask-Migrate
|
|
python-dotenv
|
|
Flask-WTF
|
|
email-validator
|
|
requests>=2.20 # Or later version
|
|
Flask-Login # <-- ADD THIS LINE
|
|
pytest>=7.0 # Or a specific later version
|
|
# Optional, but helpful for Flask fixtures later:
|
|
# pytest-flask>=1.0
|
|
|
|
|
|
# We will add Flask-SQLAlchemy later when we set up the database
|