Skip to content

Commit

Permalink
Add missed tqdm dependency and update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Profir-Petru Partachi committed Feb 11, 2020
1 parent 92ef801 commit 2dad18f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ xmltodict, beautifulsoup4, html5lib
```
for corpus preprocessing; and
```
scikit-learn
scikit-learn, tqdm
```
for the considered SVM baseline.

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@
'StORMeD': 'src/baseline/StORMeD',
},
package_data={'tagger': ['data/*.pkl']},
requires=[
install_requires=[
'tensorflow',
'numpy',
'gensim',
'nltk',
'xmltodict',
'beautifulsoup4',
'html5lib',
'scikit-learn', 'tqdm'
'scikit-learn',
'tqdm',
]
)

0 comments on commit 2dad18f

Please sign in to comment.