-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 972 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
[tool.poetry]
name = "training-service"
version = "0.1.0"
description = "Trainings FastAPI service"
authors = ["Federico Pacheco <fpacheco@fi.uba.ar>", "Martina Panetta <mpanetta@fi.uba.ar>"]
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.66.0"
uvicorn = "^0.14.0"
python-dotenv = "^0.17.1"
pydantic = {extras = ["email"], version = "^1.10.7"}
pymongo = "^4.3.3"
passlib = "^1.7.4"
flake8 = { version = "^3.9.0", optional = true }
black = { version = "^22.3.0", optional = true }
pytest = { version = "^7.0.0", optional = true }
pytest-cov = { version = "^2.11.1", optional = true }
pytest-asyncio = { version = "^0.21.0", optional = true }
httpx = "^0.23.0"
requests = "^2.28.2"
mongomock = { version = "^4.1.2", optional = true }
bcrypt = "^4.0.1"
pyjwt = "^2.6.0"
pika = "^1.3.2"
[tool.poetry.extras]
dev = ["flake8", "black", "passlib", "pytest", "pytest-cov", "mongomock", "pytest-asyncio"]
[tool.black]
line-length = 88
skip-string-normalization = true