-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
80 lines (73 loc) · 2.18 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "bertrend"
version = "0.1.0"
description = "BERTrend analyses topic evolution over time using state-of-the-art transformer models: topic modelling and LLM"
authors = ["Jérôme Picault <[email protected]>", "Guillaume Grosjean <[email protected]>"]
license = "LICENSE.md"
readme = "README.md"
repository = "https://github.com/rte-france/BERTrend"
keywords = ["topics", "BERTopic", "transformers", "weak signals"]
packages = [
{ include = "bertrend" },
{ include = "bertrend_apps" },
]
exclude = [ "data" ]
[tool.poetry.dependencies]
python = "^3.11"
ipython = "^8.28.0"
# A list of all the optional dependencies, some of which are included in the
# below `extras`. They can be opted into by apps.
pytest = { version = "^8.3.3", optional = true}
# These packages are mandatory and form the core of this package’s distribution.
accelerate = "^0.34.2"
arxiv = "^2.1.3"
bertopic = "0.16.2" #problem with versions above in .update_topics
black = "^24.10.0"
dateparser = "^1.2.0"
datamapplot = "0.3.0"
feedparser = "^6.0.11"
gensim = "4.3.2"
googlenewsdecoder = "^0.1.6"
google-api-python-client = "^2.148.0"
google-auth-httplib2 = "^0.2.0"
google-auth-oauthlib = "^1.2.1"
goose3 = "^3.1.19"
hdbscan = "^0.8.38.post2"
langchain-community = "^0.3.1"
langchain-chroma = "^0.1.4"
langchain-openai = "^0.2.2"
langdetect = "^1.0.9"
llama-index = "^0.11.17"
llama-index-core = "^0.11.17"
llvmlite = "^0.43.0"
loguru = "^0.7.2"
lxml-html-clean = "^0.2.2"
jsonlines = "^4.0.0"
markdown = "^3.7"
newscatcherapi = "^0.7.3"
newspaper4k = "^0.9.3.1"
nltk = "^3.9.1"
numpy = "<2"
openai = "^1.51.1"
pandas = "^2.2.2"
plotly = "^5.24.1"
plotly-resampler = "^0.10.0"
pygooglenews = {git = "https://github.com/picaultj/pygooglenews.git", rev = "master"}
scipy = {version = "1.12", python=""}
scikit-learn = "^1.5.2"
sentence-transformers = "3.0.1"
requests = "^2.32.3"
seaborn = "^0.13.2"
sentencepiece = "^0.2.0"
streamlit = "^1.39.0"
thefuzz = "^0.22.1"
torch = "^2.4.1"
tqdm = "^4.66.5"
tiktoken = "^0.8.0"
tokenizers = "<0.20.0"
umap-learn = "^0.5.6"
[tool.poetry.extras]
tests = ["pytest"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"