FlixRec/pyproject.toml

27 lines
559 B
TOML
Raw Normal View History

2022-05-21 01:30:37 +01:00
[tool.poetry]
name = "traktrecs"
version = "0.1.0"
description = ""
authors = ["navanchauhan <navanchauhan@gmail.com>"]
[tool.poetry.dependencies]
2022-05-22 18:48:50 +01:00
python = ">=3.8"
2022-05-21 01:30:37 +01:00
requests = "^2.27.1"
SQLAlchemy = "^1.4.36"
tqdm = "^4.64.0"
2022-05-21 16:47:23 +01:00
sentence-transformers = "^2.2.0"
faiss-cpu = "^1.7.2"
2022-05-22 18:44:40 +01:00
Flask = "^2.1.2"
fuzzywuzzy = "^0.18.0"
python-Levenshtein = "^0.12.2"
waitress = "^2.1.1"
pandas = "^1.4.2"
2022-05-21 01:30:37 +01:00
[tool.poetry.dev-dependencies]
2022-05-21 16:47:23 +01:00
pinecone-client = "^2.0.10"
2022-05-22 18:44:40 +01:00
black = "^22.3.0"
2022-05-21 01:30:37 +01:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"