-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
38 lines (33 loc) · 999 Bytes
/
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
[tool.black]
line-length=79
[tool.ruff]
line-length=79
[tool.poetry]
name = "turftopic"
version = "0.8.1"
description = "Topic modeling with contextual representations from sentence transformers."
authors = ["Márton Kardos <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
numpy = ">=1.23.0"
scikit-learn = "^1.2.0"
sentence-transformers = ">=2.2.0"
torch = "^2.1.0"
scipy = "^1.10.0"
rich = "^13.6.0"
huggingface-hub = "^0.23.2"
joblib = "^1.2.0"
pyro-ppl = { version = "^1.8.0", optional = true }
openai = { version = "^1.40.0", optional = true }
mkdocs = { version = "^1.5.2", optional = true }
mkdocs-material = { version = "^9.5.12", optional = true }
mkdocstrings = { version = "^0.24.0", extras = ["python"], optional = true }
[tool.poetry.extras]
pyro-ppl = ["pyro-ppl"]
openai = ["openai"]
docs = ["mkdocs", "mkdocs-material", "mkdocstrings"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"