forked from feldlime/RecoServiceTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (42 loc) · 993 Bytes
/
pyproject.toml
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
43
44
45
46
[tool.poetry]
name = "reco_service"
version = "0.0.1"
description = ""
authors = ["Emiliy Feldman <[email protected]>"]
maintainers = ["Emiliy Feldman <[email protected]>"]
readme = "README.md"
packages = [
{ include = "service" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10.0"
fastapi = "^0.65.1"
pydantic = "^1.8.2"
uvicorn = "^0.14.0"
orjson = "^3.7.7"
starlette = "^0.14.2"
python-multipart = "^0.0.5"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-dotenv = "^0.21.0"
pandas = "^1.5.1"
pyyaml = "^6.0"
dill = "^0.3.6"
rectools = "^0.3.0"
locust = "^2.13.1"
[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"
black = "^22.10.0"
[tool.pytest.ini_options]
markers = [
"secured: tests with .env file required"
]
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"