forked from sabuhish/fastapi-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.37 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
[tool.poetry]
name = "fastapi-mail"
version = "0.4.3"
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.6.2"
fastapi = ">=0.75.0, <0.79.0"
Jinja2 = "^3.0.1"
aiosmtplib = "^1.1.6"
pydantic = "^1.8.2"
email-validator = "^1.1.3"
aioredis = "^2.0.0"
httpx = "^0.23.0"
blinker = "^1.4"
fakeredis = "^1.6.1"
python-multipart = "^0.0.5"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-asyncio = "^0.15.1"
pytest-mock = "^3.6.1"
pytest-cov = "^2.12.1"
mkdocs = "^1.2.2"
mkdocs-material = "^7.2.6"
mkdocs-markdownextradata-plugin = "^0.2.4"
isort = "^5.9.3"
blue = "^0.7.0"
mypy = "^0.910"
typed-ast = "^1.4.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 100
[tool.blue]
line-length = 100