-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 941 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 941 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
43
[tool.poetry]
name = "arquitetos-backend"
version = "1.0.0"
description = "Arquitetos Backend REST API"
authors = ["Vinícius dos Santos"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12"
fastapi = "0.120.0"
uvicorn = { version = "0.32.0", extras = ["standard"] }
pydantic = "2.9.2"
pydantic-settings = "2.6.0"
redis = "5.0.1"
python-multipart = "0.0.18"
python-jose = { version = "3.3.0", extras = ["cryptography"] }
python-dotenv = "1.0.1"
email-validator = "2.3.0"
httpx = "0.28.1"
tzdata = "2026.2"
bcrypt = "5.0.0"
pymongo = "4.13.0"
factory-boy = "3.2.1"
faker = "18.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "9.0.3"
pytest-cov = "6.0.0"
mongomock = "4.3.0"
factory-boy = "3.2.1"
faker = "18.9.0"
flake8 = "6.1.0"
pre-commit = "3.5.0"
black = "23.12.1"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"