-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 760 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 760 Bytes
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
[tool.black]
line-length=79
[tool.ruff]
line-length=79
[tool.poetry]
name = "embedding-explorer"
version = "0.6.0"
description = "Tools for interactive visual inspection of semantic embeddings."
authors = ["Márton Kardos <power.up1163@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "embedding_explorer"}]
[tool.poetry.dependencies]
python = ">=3.8.0"
dash = "~2.11.1"
plotly = "~5.14.0"
dash-extensions = "~0.1.10"
dash-mantine-components = "~0.11.1"
dash-iconify = "~0.1.2"
scikit-learn = "^1.1.0"
numpy = ">=1.23.0"
pandas = ">=1.5.2"
wordcloud = "^1.8.2.2"
neofuzz = ">=0.1.2"
hdbscan = ">=0.8.30"
umap-learn = ">=0.5.0"
kaleido = ">=0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"