diff --git a/hebpipe/lib/_version.py b/hebpipe/lib/_version.py index a47215e..fcc8195 100644 --- a/hebpipe/lib/_version.py +++ b/hebpipe/lib/_version.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- -__version__ = "3.0.0.2" +__version__ = "3.0.0.3" __author__ = "Amir Zeldes" __copyright__ = "Copyright 2018-2023, Amir Zeldes" __license__ = "Apache 2.0 License" diff --git a/hebpipe/lib/crfutils/__init__.py b/hebpipe/lib/crfutils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 782a08c..255f49c 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name = 'hebpipe', packages = find_packages(), - version = '3.0.0.2', + version = '3.0.0.3', description = 'A pipeline for Hebrew NLP', author = 'Amir Zeldes', author_email = 'amir.zeldes@georgetown.edu', @@ -11,7 +11,7 @@ install_requires=['requests','numpy','transformers==3.5.1','torch==1.7.1','pandas','scipy','joblib','xgboost==0.81','rftokenizer','depedit','xmltodict', 'diaparser==1.1.2','flair==0.6.1','stanza','conllu','protobuf==3.20.*'], url = 'https://github.com/amir-zeldes/HebPipe', license='Apache License, Version 2.0', - download_url = 'https://github.com/amir-zeldes/HebPipe/releases/tag/v3.0.0.2', + download_url = 'https://github.com/amir-zeldes/HebPipe/releases/tag/v3.0.0.3', keywords = ['NLP', 'Hebrew', 'segmentation', 'tokenization', 'tagging', 'parsing','morphology','POS','lemmatization'], classifiers = ['Programming Language :: Python', 'Programming Language :: Python :: 2',