25 lines
461 B
TOML
25 lines
461 B
TOML
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "sawaw"
|
|
version = "0.0.1"
|
|
description = ""
|
|
authors = ["Kunologist"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
loguru = "^0.7.0"
|
|
pandas = "^2.1.3"
|
|
numpy = "^1.26.2"
|
|
pytest = "^7.4.0"
|
|
pytest-cov = "^4.1.0"
|
|
openai = "^1.2.0,<1.3.0"
|
|
colorama = "^0.4.4"
|
|
gensim = "^4.3.2"
|
|
tqdm = "^4.62.3"
|
|
torch = "^1.13.1,<2.0.0"
|