Skip to content

Commit

Permalink
Add spacy installation to Makefile and update requirements.txt and se…
Browse files Browse the repository at this point in the history
…tup.py for spacy dependency
  • Loading branch information
stochastic-sisyphus authored Dec 11, 2024
1 parent d9574dd commit 60a877c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ download-data: install-deps

install: venv
$(PIP) install -e .
$(PIP) install spacy # Added explicit spacy install
$(PYTHON) -m spacy download en_core_web_sm

test: venv
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ python-louvain>=0.16
scipy>=1.8.0

# Utilities & Performance
tqdm>=4.65.0
tqdm>=4.67.1
pyyaml>=6.0
python-dotenv>=0.19.0
cachetools>=5.0.0
Expand Down Expand Up @@ -77,7 +77,7 @@ PyPDF2>=2.0.0
python-docx>=0.8.11

# API Integration
requests>=2.26.0
requests>=2.32.3
aiohttp>=3.8.0

# Testing
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"dash-html-components>=2.0.0",
"dash-table>=5.0.0",
"jupyter-dash>=0.4.0",
"spacy>=3.5.0", # Added spacy
"cachetools>=5.0.0",
"joblib>=1.1.0"
],
Expand Down

0 comments on commit 60a877c

Please sign in to comment.