-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 912 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 912 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
[tool.black]
line-length = 79
[tool.poetry]
name = "stormtrooper"
version = "1.0.0"
description = "Transformer/LLM-based zero and few-shot classification in scikit-learn pipelines"
authors = ["Márton Kardos <power.up1163@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.23.0"
scikit-learn = "^1.2.0"
transformers = ">=4.25.0, <4.41.0"
tqdm = "^4.60.0"
thefuzz = "^0.18.0"
aiohttp = "^3.8.0"
accelerate = ">=0.2.1"
sentence-transformers = ">=3.0.1"
datasets = ">=2.14.0"
torch = ">=2.0.0"
openai = ">=1.40.0"
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]
docs = ["mkdocs", "mkdocs-material", "mkdocstrings"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"