Skip to content

Commit

Permalink
Merge pull request #21 from amir-zeldes/dev
Browse files Browse the repository at this point in the history
update requirements
  • Loading branch information
amir-zeldes authored Apr 7, 2022
2 parents 7a19b06 + 1eb9372 commit 7bc9fd2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hebpipe/lib/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-

__version__ = "2.0.0.1"
__version__ = "2.0.0.2"
__author__ = "Amir Zeldes"
__copyright__ = "Copyright 2018-2022, Amir Zeldes"
__license__ = "Apache 2.0 License"
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
requests
transformers==3.5.1
torch==1.6.0
xgboost==0.81
rftokenizer
numpy
Expand All @@ -10,4 +12,4 @@ xmltodict
diaparser
flair==0.6.1
stanza
conllu
conllu
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
setup(
name = 'hebpipe',
packages = find_packages(),
version = '2.0.0.1',
version = '2.0.0.2',
description = 'A pipeline for Hebrew NLP',
author = 'Amir Zeldes',
author_email = 'amir.zeldes@georgetown.edu',
package_data = {'':['README.md','LICENSE.md','requirements.txt'],'hebpipe':['lib/*','data/*','bin/*','models/models_go_here.txt','models/stanza/stanza_models_here.txt']},
install_requires=['numpy','pandas','scipy','joblib','xgboost==0.81','rftokenizer','depedit','xmltodict',
install_requires=['numpy','transformers==3.5.1','torch==1.6.0','pandas','scipy','joblib','xgboost==0.81','rftokenizer','depedit','xmltodict',
'diaparser','flair==0.6.1','stanza','conllu'],
url = 'https://github.com/amir-zeldes/HebPipe',
license='Apache License, Version 2.0',
download_url = 'https://github.com/amir-zeldes/HebPipe/releases/tag/v2.0.0.1',
download_url = 'https://github.com/amir-zeldes/HebPipe/releases/tag/v2.0.0.2',
keywords = ['NLP', 'Hebrew', 'segmentation', 'tokenization', 'tagging', 'parsing','morphology','POS','lemmatization'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
Expand Down

0 comments on commit 7bc9fd2

Please sign in to comment.