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 (57 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 1.54 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
[project]
name = "fastapi-mail"
version = "1.6.1"
description = "Simple lightweight mail library for FastApi"
authors = [{ name="Sabuhi Shukurov", email="sabuhi.shukurov@gmail.com" }]
license = {text="MIT"}
readme = "README.md"
homepage = "https://github.com/sabuhish/fastapi-mail"
repository = "https://github.com/sabuhish/fastapi-mail"
requires-python = ">=3.10"
dependencies = [
"starlette (>=1.0.0,<2.0.0)",
"pydantic-settings(>=2.6.1,<3.0.0)",
"cryptography (>=49.0.0,<50.0.0)",
"httpx>=0.28.1",
"typing-extensions>=4.15.0",
"jinja2>=3.1.6",
"pydantic>=2.12.5",
"email-validator>=2.3.0",
"regex>=2025.11.3",
"aiosmtplib>=5.0.0",
"blinker>=1.9.0"
]
[project.optional-dependencies]
httpx = ["httpx"]
redis = ["redis>=7.4.0,<8.0.0"]
[dependency-groups]
dev = [
"flake8>=7.3.0",
"mkdocs-material (>=9.7.6,<10.0.0)",
"fakeredis (>=2.35.1,<3.0.0)",
"isort>=7.0.0",
"fastapi>=0.124.0",
"uvicorn>=0.38.0",
"mkdocs>=1.2",
"mkdocs-markdownextradata-plugin>=0.2",
"mypy (>=2.1.0,<3.0.0)",
"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>=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"]