-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (44 loc) · 1.38 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
[tool.poetry]
name = "hades-nlp"
version = "0.1.2"
description = "Homologous Automated Document Exploration and Summarization - A powerful tool for comparing similarly structured documents"
authors = ["Artur Żółkowski <[email protected]>", "Piotr Wilczyński <[email protected]>", "Mateusz Krzyziński <[email protected]>", "Emilia Wiśnios <[email protected]>"]
packages = [
{ include = "hades"},
{ include = "hades_app"},
]
keywords = ["nlp", "documents", "topic modeling", "summarization", "machine learning", "natural language processing", "text analysis", "text mining", "text summarization"]
readme = "README.md"
[tool.poetry.scripts]
hades = "hades_app.run_app:cli"
[tool.poetry.dependencies]
python = "^3.9,<3.9.7||>3.9.7,<4"
pandas = "^1.4.3"
numpy = "^1.23.1"
spacy = "^3.3.1"
black = "^22.6.0"
scipy = "^1.8.1"
gensim = "^4.3.1"
swifter = "^1.2.0"
PyPDF2 = "^2.6.0"
matplotlib = ">3.5.2"
seaborn = ">=0.12.2"
pyLDAvis = "^3.3.1"
pycountry = "^22.3.5"
statsmodels = "^0.13.2"
openai = "^0.23.0"
umap-learn = "^0.5.3"
llvmlite = "^0.40.1"
streamlit = "1.16.0"
contextualized-topic-models = "^2.4.2"
st-annotated-text = "^3.0.0"
click = "^8.1.3"
bert-extractive-summarizer = "^0.10.1"
plotly = "^5.9.0"
setuptools = ">58.1.0"
altair = "<5"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"