Update requirements.txt
Browse files- requirements.txt +7 -9
requirements.txt
CHANGED
|
@@ -1,23 +1,21 @@
|
|
| 1 |
-
#
|
| 2 |
streamlit==1.30.0
|
| 3 |
-
|
| 4 |
-
# Data stack
|
| 5 |
pandas==2.2.0
|
| 6 |
numpy==1.26.3
|
| 7 |
matplotlib==3.8.2
|
| 8 |
seaborn==0.13.2
|
| 9 |
plotly==5.18.0
|
| 10 |
pillow==10.2.0
|
| 11 |
-
|
| 12 |
-
# Utilidades
|
| 13 |
requests==2.31.0
|
| 14 |
python-dotenv==1.0.0
|
| 15 |
beautifulsoup4==4.12.2
|
| 16 |
nltk==3.8.1
|
| 17 |
scikit-learn==1.4.0
|
| 18 |
opencv-python-headless==4.9.0.80
|
| 19 |
-
|
| 20 |
-
# Banco de dados (escolha UM e remova o outro)
|
| 21 |
SQLAlchemy==2.0.46
|
| 22 |
-
|
| 23 |
-
pymysql==1.1.0 # use SE for MySQL/MariaDB (e REMOVA a linha acima)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# núcleo e data stack (mantenha o que já colocamos antes)
|
| 2 |
streamlit==1.30.0
|
|
|
|
|
|
|
| 3 |
pandas==2.2.0
|
| 4 |
numpy==1.26.3
|
| 5 |
matplotlib==3.8.2
|
| 6 |
seaborn==0.13.2
|
| 7 |
plotly==5.18.0
|
| 8 |
pillow==10.2.0
|
|
|
|
|
|
|
| 9 |
requests==2.31.0
|
| 10 |
python-dotenv==1.0.0
|
| 11 |
beautifulsoup4==4.12.2
|
| 12 |
nltk==3.8.1
|
| 13 |
scikit-learn==1.4.0
|
| 14 |
opencv-python-headless==4.9.0.80
|
|
|
|
|
|
|
| 15 |
SQLAlchemy==2.0.46
|
| 16 |
+
psycopg2-binary==2.9.6 # use SE for PostgreSQL
|
| 17 |
+
# pymysql==1.1.0 # use SE for MySQL/MariaDB (e REMOVA a linha acima)
|
| 18 |
+
|
| 19 |
+
# --> Novos (pelos erros de import)
|
| 20 |
+
bcrypt==4.1.2
|
| 21 |
+
streamlit-calendar==1.0.0 # nome do pacote no PyPI é com hífen
|