-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (92 loc) · 2.56 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (92 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[project]
name = "fastapi-azure-auth"
version = "5.3.0" # Remember to change in __init__.py as well
description = "Easy and secure implementation of Azure Entra ID for your FastAPI APIs"
authors = [{ name = "Jonas Krüger Svensson", email = "jonas@vibber.ai" }]
requires-python = ">=3.11"
readme = "README.md"
keywords = [
"ad",
"async",
"asyncio",
"authentication",
"azure",
"azure ad",
"azure entra id",
"azure entra",
"entra id",
"azuread",
"fastapi",
"multi tenant",
"oauth2",
"oidc",
"security",
"single tenant",
"starlette",
"trio",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastapi>=0.111.1",
"anyio>=4.4.0",
"cryptography>=48.0.1",
"httpx2>=2.0.0",
"pydantic>=2.6.2",
"pyjwt>=2.8.0,<3",
]
[project.urls]
Homepage = "https://github.com/vibber-ai/fastapi-azure-auth"
Repository = "https://github.com/vibber-ai/fastapi-azure-auth"
Documentation = "https://github.com/vibber-ai/fastapi-azure-auth"
[dependency-groups]
dev = [
"pre-commit>=4.0.0",
"pytest>=8.3.0",
"pytest-cov>=6.0.0",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.14.0",
"requests-mock>=1.12.0",
"pytest-socket>=0.7.0",
"pytest-dotenv>=0.5.2",
"uvicorn>=0.32.0",
"pytest-freezer>=0.4.8",
"anyio>=4.4.0",
"trio>=0.27.0",
"pytest-httpx2>=1.0.0",
"openapi-spec-validator>=0.7.1",
"pydantic>=2.11.0",
"pydantic-settings>=2.5.0",
"asgi-lifespan>=2.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
fix = true
line-length = 120
target-version = 'py311'
[tool.ruff.lint]
# Defaults plus import sorting (replaces isort) and modern-syntax upgrades (replaces pyupgrade)
extend-select = ["I", "UP"]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["fastapi_azure_auth"]
[tool.ruff.format]
docstring-code-format = true
line-ending = "lf"
quote-style = "single"