-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathrequirements.txt
More file actions
34 lines (29 loc) · 869 Bytes
/
requirements.txt
File metadata and controls
34 lines (29 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Core dependencies
Django==4.2.29 # Current LTS version - security updates (CVE-2026-25673)
nltk==3.9.3 # Security update (CVE-2025-14009 Zip Slip)
numpy>=2.0.0
scipy>=1.15.0
GitPython>=3.1.0
python-dateutil>=2.9.0 # Replaces DateTime
# For downloading State of the Union addresses
requests>=2.31.0
beautifulsoup4>=4.12.0
# Optional but recommended
django-debug-toolbar>=4.4.0
django-extensions>=3.2.0
gunicorn>=23.0.0
docopt>=0.6.0
chardet>=5.2.0
# For testing
pytest>=9.0.0
pytest-django>=4.9.0
selenium>=4.30.0
# For LLM-based topic naming (optional)
openai>=1.0.0
# For BERTopic topic modeling (optional)
# NOTE: BERTopic dependencies (specifically numba) currently require Python <=3.13
# If using Python 3.14+, BERTopic installation will fail until dependencies are updated
bertopic>=0.16.0
sentence-transformers>=2.2.0
umap-learn>=0.5.5
hdbscan>=0.8.33