-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 892 Bytes
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
[tool.poetry]
name = "auth0-api-python"
version = "1.0.0.b6"
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
authors = ["Auth0 <support@auth0.com>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "auth0_api_python", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.9"
authlib = "^1.0" # For JWT/OIDC features
requests = "^2.31.0" # If you use requests for HTTP calls (e.g., discovery)
httpx = "^0.28.1"
ada-url = "^1.27.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-cov = "^4.0"
pytest-asyncio = "^0.25.3"
pytest-mock = "^3.15.1"
pytest-httpx = "^0.35.0"
ruff = ">=0.1,<0.15"
freezegun = "^1.5.5"
[tool.pytest.ini_options]
addopts = "--cov=src --cov-report=term-missing:skip-covered --cov-report=xml"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"