-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
53 lines (49 loc) · 1.03 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
[project]
name="fastapi-beanie-jwt"
version="0.1.0"
description = "Sample FastAPI server with JWT auth and Beanie ODM"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Michael duPont", email="[email protected]"}
]
dependencies = [
"bcrypt~=4.0",
"beanie~=1.23",
"fastapi~=0.104",
"fastapi-jwt>=0.2",
"fastapi-mail~=1.4",
"python-decouple~=3.8",
"uvicorn~=0.24",
]
[project.optional-dependencies]
dev = ["mypy", "ruff"]
test = [
"asgi-lifespan~=2.1",
"httpx~=0.25",
"pytest-asyncio~=0.21",
]
[project.urls]
"Source" = "https://github.com/flyinactor91/fastapi-beanie-jwt"
[tool.mypy]
check_untyped_defs = true
disallow_any_unimported = false
disallow_untyped_defs = true
explicit_package_bases = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
[tool.ruff]
extend-select = [
"UP",
"D",
]
ignore = [
"D105",
"D203",
"D213",
]