Create requirements.txt
Browse files- requirements.txt +32 -0
requirements.txt
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ARF 3.3.9 Dependencies
|
| 2 |
+
agentic-reliability-framework>=3.3.9
|
| 3 |
+
|
| 4 |
+
# Web Framework
|
| 5 |
+
gradio>=4.0.0
|
| 6 |
+
streamlit>=1.28.0 # Alternative interface
|
| 7 |
+
|
| 8 |
+
# Data Processing & Visualization
|
| 9 |
+
pandas>=2.0.0
|
| 10 |
+
numpy>=1.24.0
|
| 11 |
+
plotly>=5.17.0
|
| 12 |
+
|
| 13 |
+
# Utilities
|
| 14 |
+
python-dateutil>=2.8.2
|
| 15 |
+
pydantic>=2.0.0
|
| 16 |
+
typing-extensions>=4.8.0
|
| 17 |
+
ujson>=5.8.0
|
| 18 |
+
|
| 19 |
+
# Mock/Simulation
|
| 20 |
+
faker>=20.0.0 # For generating realistic demo data
|
| 21 |
+
|
| 22 |
+
# Hugging Face Spaces specific
|
| 23 |
+
huggingface-hub>=0.20.0
|
| 24 |
+
|
| 25 |
+
# Optional: For enhanced visualizations
|
| 26 |
+
pillow>=10.0.0
|
| 27 |
+
matplotlib>=3.7.0
|
| 28 |
+
|
| 29 |
+
# Development dependencies (not needed for production demo)
|
| 30 |
+
pytest>=7.4.0
|
| 31 |
+
black>=23.0.0
|
| 32 |
+
isort>=5.12.0
|