-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (34 loc) · 1.04 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
[tool.poetry]
name = "wordview"
version = "1.4.0"
description = """Wordview is a Python package for Exploratory Data Analysis of text and provides many statistics about your data in the form of plots, tables, and descriptions allowing you to have both a high-level and detailed overview of your data."""
authors = ["meghdadFar <meghdad.farahmand@gmail.com>"]
include = ["CHANGES.rst"]
exclude = ["notebooks/", "tests/", "data/"]
license = "MIT"
keywords = ["nlp", "text analysis", "statistics"]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
langdetect = ">=1.0.9"
pandas = "2.0.1"
scikit-learn = "1.2.2"
scipy = "1.10.0"
nltk = "3.6.6"
tqdm = "4.62.3"
wordcloud = "1.9.1.1"
plotly = "5.5.0"
tabulate = "0.9.0"
sentence-transformers = "2.2.2"
openai = "1.14.3"
Flask = "3.0.2"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=3.0.0"
pytest = ">=7.1"
pytest-cov = ">=3.0.0"
ipython = ">=8.4.0"
sphinx = ">=v6.1.3"
sphinx-rtd-theme = "1.2.1"
jupyterlab = "4.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"