Update requirements.txt
Browse files- requirements.txt +31 -5
requirements.txt
CHANGED
|
@@ -1,5 +1,31 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 2 |
+
# PyStreamlit Converter Pro β Requirements
|
| 3 |
+
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 4 |
+
# Install: pip install -r requirements.txt
|
| 5 |
+
# Run: streamlit run app.py
|
| 6 |
+
|
| 7 |
+
# ββ Core ββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 8 |
+
streamlit>=1.32.0
|
| 9 |
+
nbformat>=5.9.2
|
| 10 |
+
|
| 11 |
+
# ββ AST / Code Utilities ββββββββββββββββββββββββββββββββββββ
|
| 12 |
+
astor>=0.8.1 # Python < 3.9 fallback (ast.unparse)
|
| 13 |
+
|
| 14 |
+
# ββ Data & Visualisation (for sample files & analysis) ββββββ
|
| 15 |
+
pandas>=2.0.0
|
| 16 |
+
numpy>=1.26.0
|
| 17 |
+
matplotlib>=3.8.0
|
| 18 |
+
seaborn>=0.13.0
|
| 19 |
+
plotly>=5.20.0
|
| 20 |
+
altair>=5.2.0
|
| 21 |
+
|
| 22 |
+
# ββ Machine Learning (optional) βββββββββββββββββββββββββββββ
|
| 23 |
+
scikit-learn>=1.4.0
|
| 24 |
+
# xgboost>=2.0.0 # uncomment if needed
|
| 25 |
+
# lightgbm>=4.0.0 # uncomment if needed
|
| 26 |
+
# torch>=2.0.0 # uncomment if needed
|
| 27 |
+
# tensorflow>=2.15.0 # uncomment if needed
|
| 28 |
+
|
| 29 |
+
# ββ Standard Library (no install needed) ββββββββββββββββββββ
|
| 30 |
+
# difflib, ast, re, io, hashlib, zipfile, pathlib,
|
| 31 |
+
# textwrap, collections, datetime β all stdlib
|