thinkingEverytime/QuantOracle
1
1# HARD CODED IMPORTANT RULE: Keep code concise and meaningful2# - Remove unwanted/junky code and unnecessary lines3# - Each line must be valuable and to the point4# - Avoid bloated, illogical code - prefer 100 clean lines over 10000 junk lines5# - Author: Rishi Gupta6# - License: MIT7 8# QuantOracle - Dependencies (Streamlit Frontend Only)9 10# Frontend11streamlit==1.28.212streamlit-shadcn-ui==0.1.1913plotly==5.18.014 15# Data & Finance16yfinance==0.2.3617pandas==2.1.318numpy==1.26.219requests==2.31.020feedparser==6.0.1121duckdb==0.10.322 23# Utilities24python-dotenv==1.0.025python-dateutil==2.8.226pytz==2023.327 28# Testing29pytest==7.4.330pytest-cov==4.1.031 32# Linting33ruff==0.1.634 