-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 842 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
[tool.poetry]
name = "auth0-server-python"
version = "1.0.0b9"
description = "Auth0 server-side Python SDK"
readme = "README.md"
authors = ["Auth0 <support@okta.com>"]
license = "MIT"
packages = [
{ include = "auth0_server_python", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.9"
cryptography = ">=43.0.1" # pyjwt has a weak dependency on cryptography
pyjwt = ">=2.8.0"
authlib = "^1.2"
httpx = "^0.28.1"
pydantic = "^2.10.6"
jwcrypto = "^1.5.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2"
pytest-cov = "^4.0"
pytest-asyncio = ">=0.20.3,<0.24.0"
pytest-mock = "^3.14.0"
twine = "^6.1.0"
ruff = ">=0.1"
[tool.pytest.ini_options]
addopts = "--cov=auth0_server_python --cov-report=term-missing:skip-covered --cov-report=xml"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"