-
Notifications
You must be signed in to change notification settings - Fork 82
/
pyproject.toml
74 lines (65 loc) · 1.85 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "fastapi-mail"
version = "1.2.5"
description = "Simple lightweight mail library for FastApi"
authors = ["Sabuhi Shukurov <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sabuhish/fastapi-mail"
repository = "https://github.com/sabuhish/fastapi-mail"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0" # flake wants 3.8.1 minimum for some reason
Jinja2 = "^3.0"
aiosmtplib = "^2.0"
pydantic = "^2.0"
pydantic_settings = "^2.0"
email-validator = "^2.0"
blinker = "^1.5"
httpx = {extras = ["httpx"], version = "^0.23", optional = true}
redis = {extras = ["redis"], version = "^4.3", optional = true}
starlette = ">=0.24,<1.0" # caret behaviour on 0.x is to lock to 0.x.*
[tool.poetry.extras]
httpx = ["httpx"]
redis = ["redis"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-asyncio = "^0.20"
pytest-mock = "^3.10"
pytest-cov = "^4.0"
mkdocs = "^1.2"
mkdocs-material = "^7.2"
mkdocs-markdownextradata-plugin = "^0.2"
isort = "^5.9"
mypy = "^1.4"
typed-ast = "^1.4"
regex = "2022.7.9"
fakeredis = "^2.0"
httpx = "^0.23"
redis = "^4.3"
uvicorn = "^0.20"
fastapi = "^0.100"
types-redis = "^4.3.21"
flake8 = "^6.0"
black = "^22.3"
[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"]