1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-08-24 02:22:20 +00:00

Added WordNet-Affect plugin and Makefile

This commit is contained in:
J. Fernando Sánchez
2016-09-21 21:48:57 +02:00
parent 0e9db7081c
commit 5e8bc717a8
11 changed files with 527 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
from gsiupm/senpy:0.6.1-python2.7
RUN mkdir -p /senpy-plugins
RUN pip install nltk
RUN python -m nltk.downloader stopwords
RUN python -m nltk.downloader punkt
RUN python -m nltk.downloader maxent_treebank_pos_tagger
RUN python -m nltk.downloader wordnet
RUN pip install pytest
RUN pip install mock
ADD . /senpy-plugins
RUN senpy -f /senpy-plugins --only-install
WORKDIR /senpy-plugins/