forked from sabuhish/fastapi-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.46 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "fastapi-mail"
version = "1.2.6"
description = "Simple lightweight mail library for FastApi"
authors = ["Sabuhi Shukurov <sabuhi.shukurov@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sabuhish/fastapi-mail"
repository = "https://github.com/sabuhish/fastapi-mail"
[tool.poetry.dependencies]
python = "^3.10.0"
starlette = ">=0.24,<1.0" # caret behaviour on 0.x is to lock to 0.x.*
pydantic-settings = "^2.6.1"
flake8 = "^7.3.0"
redis = "^6.4.0"
mkdocs-material = "^9.6.22"
uvicorn = "^0.37.0"
cryptography = "^46.0.3"
httpx = "^0.28.1"
typing-extensions = "^4.15.0"
jinja2 = "^3.1.6"
pydantic = "^2.12.2"
email-validator = "^2.3.0"
regex = "^2025.9.18"
fakeredis = "^2.32.0"
aiosmtplib = "^4.0.2"
isort = "^7.0.0"
blinker = "^1.9.0"
fastapi = "^0.119.0"
[tool.poetry.extras]
httpx = ["httpx"]
redis = ["redis"]
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.2"
mkdocs-markdownextradata-plugin = "^0.2"
mypy = "^1.4"
typed-ast = "^1.4"
types-redis = "^4.3.21"
pytest-cov = "^7.0.0"
black = "^25.9.0"
pytest-mock = "^3.15.1"
pytest = "^8.4.2"
pytest-asyncio = "^1.2.0"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
py_version=39
skip_glob = [".github/*", ".venv/*", "venv/*", ".vscode/*"]
skip = [".gitignore", ".md", ".yaml", ".yml", ".lock",".toml"]