blob: c7dd02823cf1cfa5a3346fe736a3b5d3ac8d119b (
plain)
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
|
[tool.poetry]
name = "traktrecs"
version = "0.1.0"
description = ""
authors = ["navanchauhan <navanchauhan@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.8"
requests = "^2.27.1"
SQLAlchemy = "^1.4.36"
tqdm = "^4.64.0"
sentence-transformers = "^2.2.0"
faiss-cpu = "^1.7.2"
Flask = "^2.1.2"
fuzzywuzzy = "^0.18.0"
python-Levenshtein = "^0.12.2"
waitress = "^2.1.1"
pandas = "^1.4.2"
[tool.poetry.dev-dependencies]
pinecone-client = "^2.0.10"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|