-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·56 lines (46 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
executable file
·56 lines (46 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "cntext"
version = "2.2.1"
description = "Chinese text analysis library, which can perform word frequency statistics, dictionary expansion, sentiment analysis, similarity, readability, co-occurrence analysis, social computing (attitude, prejudice, culture) on texts; Now support Ollama(LLM) analysis"
authors = ["DaDeng"]
license = "MIT"
readme = "README.md"
# 包含非 Python 文件
packages = [
{ include = "cntext" },
]
[tool.poetry.dependencies]
python = "^3.8"
ftfy = "^6.2.0"
jieba = "^0.42"
numpy = "^1.26.4"
scikit-learn = "^1.5.0"
matplotlib = "^3.6.0"
PyMuPDF = "^1.25.4"
aiolimiter = "1.2.1"
nest-asyncio = "^1.6.0"
pyecharts = "2.0.0"
gensim = "^4.2.0"
nltk = "^3.8"
pandas = "^2.2.0"
chardet = "^5.0.0"
h5py = "^3.9.0"
distinctiveness = "^0.14.6"
networkx = "^3.2"
tqdm = "^4.66.4"
scipy = "^1.12.0"
python-docx = "^1.1.2"
opencc-python-reimplemented = "^0.1.6"
ollama = "^0.2.1"
pydantic="^2.11.7"
instructor="^1.11.2"
openai = "^1.107.0"
PyYAML='^6.0.2'
contractions='^0.1.73'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[options]
package_data = "data/*.yaml"
include_package_data = true
zip_safe = false