-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 975 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
35
36
37
[tool.poetry]
name = "auth0-api-python"
version = "1.0.0b9"
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 = [
{version = "^1.30.0", python = ">=3.10"},
{version = "^1.27.0", python = ">=3.9,<3.10"}
]
[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"
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"