-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 840 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
35
36
37
38
39
40
41
42
[tool.poetry]
name = "reco_service"
version = "0.0.1"
description = ""
authors = ["Emiliy Feldman <feldlime@yandex.ru>"]
maintainers = ["Emiliy Feldman <feldlime@yandex.ru>"]
readme = "README.md"
packages = [
{ include = "service" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10.0"
fastapi = "^0.65.1"
pydantic = "^1.8.2"
gunicorn = "^20.1.0"
uvloop = "^0.15.2"
uvicorn = "^0.14.0"
orjson = "^3.7.7"
starlette = "^0.14.2"
jupyter = "^1.0.0"
pandas = "^1.5.1"
tqdm = "^4.64.1"
dill = "^0.3.6"
#implicit = "^0.6.2"
nmslib = "^2.1.1"
pyyaml = "^6.0"
#catboost = "^1.1.1"
sentry-sdk = "^1.20.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
requests = "2.25.1"
mypy = "^0.812"
isort = "^5.8.0"
bandit = "^1.7.0"
flake8 = "^3.9.2"
pylint = "~2.8.3"
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"