Skip to content

Commit

Permalink
bump version to 0.9.11b2
Browse files Browse the repository at this point in the history
Bugfix for missing Data files for SentimentAnalysis
  • Loading branch information
yangyaofei committed Jul 19, 2021
1 parent 958699e commit ab65a49
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nlpir/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import functools
from .exception import NLPIRException

__version__ = "0.9.11b1"
__version__ = "0.9.11b2"
PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
logger = logging.getLogger("nlpir")

Expand Down
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,16 @@ def finalize_options(self):
python_requires='>=3.6',
install_requires=dependencies,
include_package_data=True,
package_data={'nlpir': ['Data/*.*', 'Data/*/*', 'Data/Sentiment/Data/*', 'Data/Sentiment/Data/*/*']},
package_data={
'nlpir': [
'Data/*.*',
'Data/*/*',
'Data/Sentiment/Data/*',
'Data/Sentiment/Data/*/*',
'Data/SentimentAnalysis/Data/*',
'Data/SentimentAnalysis/Data/*/*'
]
},
keywords=['nlpir', 'nlp', 'Chinese word segmentation', 'ictclas', 'CWS'],
test_suite='tests',
platforms=[
Expand Down

0 comments on commit ab65a49

Please sign in to comment.