Skip to content

Commit

Permalink
20230828
Browse files Browse the repository at this point in the history
  • Loading branch information
hiDaDeng committed Aug 28, 2023
1 parent 4f305cc commit 1b53fb8
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 6 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@

```
pip install cntext
pip install numpy==1.24.2
pip install gensim==4.2.0
pip install scikit-learn==1.1.2
```


Expand Down
3 changes: 3 additions & 0 deletions chinese_readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@

```
pip install cntext
pip install numpy==1.24.2
pip install gensim==4.2.0
pip install scikit-learn==1.1.2
```


Expand Down
2 changes: 1 addition & 1 deletion cntext.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: cntext
Version: 1.8.4
Version: 1.8.5
Summary: Chinese text analysis library, which can perform word frequency statistics, dictionary expansion, sentiment analysis, similarity, readability, co-occurrence analysis, social calculation (attitude, prejudice, culture) on texts
Home-page: https://github.com/hidadeng/cntext
Author: 大邓
Expand Down
6 changes: 3 additions & 3 deletions cntext.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
jieba
numpy==1.20.0
numpy
mittens
scikit-learn
numpy
matplotlib
pyecharts
gensim>=4.2.0
gensim
nltk
pandas>=1.3.5
pandas
Binary file added dist/.DS_Store
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

setup(
name='cntext', # 包名字
version='1.8.4', # 包版本
version='1.8.5', # 包版本
description='Chinese text analysis library, which can perform word frequency statistics, dictionary expansion, sentiment analysis, similarity, readability, co-occurrence analysis, social calculation (attitude, prejudice, culture) on texts', # 简单描述
author='大邓', # 作者
author_email='thunderhit@qq.com', # 邮箱
url='https://github.com/hidadeng/cntext', # 包的主页
packages=setuptools.find_packages(),
package_data = {'':['files/*.pkl']},
install_requires=['jieba', 'numpy==1.20.0', 'mittens', 'scikit-learn', 'numpy', 'matplotlib', 'pyecharts', 'gensim>=4.2.0', 'nltk', 'pandas>=1.3.5'],
install_requires=['jieba', 'numpy', 'mittens', 'scikit-learn', 'numpy', 'matplotlib', 'pyecharts', 'gensim', 'nltk', 'pandas'],
python_requires='>=3.5',
license="MIT",
keywords=['chinese', 'text mining', 'sentiment', 'sentiment analysis', 'natural language processing', 'sentiment dictionary development', 'text similarity'],
Expand Down

0 comments on commit 1b53fb8

Please sign in to comment.