-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.19 KB
/
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
[tool.poetry]
name = "user-service"
version = "0.1.0"
description = "User 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"
behave = { version = "^1.2.6", optional = true }
mongomock = { version = "^4.1.2", optional = true }
bcrypt = "^4.0.1"
pyjwt = "^2.6.0"
sendgrid = "^6.10.0"
twilio = "^8.1.0"
google-auth = "^2.17.3"
google-oauth2-tool = "^0.0.3"
google = "^3.0.0"
python-social-auth = "^0.3.6"
firebase-admin = "^6.1.0"
setuptools = "^58.2.0"
pika = "^1.3.2"
geopy = "^2.2.0"
[tool.poetry.extras]
dev = ["flake8", "black", "passlib", "pytest", "pytest-cov", "behave", "mongomock", "pytest-asyncio"]
[tool.black]
line-length = 88
skip-string-normalization = true