From ba691f48a68c0ec110efd143e6a6d6e7b723e91a Mon Sep 17 00:00:00 2001 From: luozhouyang Date: Fri, 21 May 2021 00:26:52 +0800 Subject: [PATCH] Release v0.3.0 --- autophrasex/__init__.py | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/autophrasex/__init__.py b/autophrasex/__init__.py index ed30a4d..012421e 100644 --- a/autophrasex/__init__.py +++ b/autophrasex/__init__.py @@ -12,7 +12,7 @@ from .tokenizer import JiebaTokenizer __name__ = 'autophrasex' -__version__ = '0.2.0' +__version__ = '0.3.0' logging.basicConfig( format="%(asctime)s %(levelname)7s %(filename)20s %(lineno)4d] %(message)s", diff --git a/setup.py b/setup.py index 74aef54..c469d4a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name="autophrasex", - version="0.2.0", + version="0.3.0", description="Automated Phrase Mining from Massive Text Corpora in Python.", long_description=long_description, long_description_content_type="text/markdown", @@ -21,7 +21,6 @@ }, install_requires=[ "jieba", - "lac", "naive-stopwords", "scikit-learn", "opencc",