We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8419627 commit 1422d81Copy full SHA for 1422d81
requirements.txt
@@ -1,18 +1,28 @@
1
+# Flask and related libraries
2
Flask==2.2.5
3
Flask-RESTful==0.3.9
4
SQLAlchemy==1.4.36
5
Flask-SQLAlchemy==2.5.1
6
Flask-JWT-Extended==4.4.0
7
marshmallow==3.18.0
8
Flask-Logging==0.2.0
9
+
10
+# Testing libraries
11
pytest==7.1.2
12
pytest-flask==1.2.0
13
pytest-cov==3.0.0
14
15
+# Web3 and HTTP requests
16
web3==5.29.0
17
requests==2.32.2
18
19
+# Environment variable management
20
python-dotenv==0.19.2
21
22
# Additional dependencies for quantum computing and AI
23
qiskit==0.39.1 # For quantum computing
24
scikit-learn==1.0.2 # For machine learning
25
numpy==1.21.6 # For numerical operations
26
27
+# Optional: Joblib for model persistence
28
+joblib==1.1.0 # For saving and loading models
0 commit comments