-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (75 loc) · 2.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
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pytest-iam"
version = "0.1.0"
description = "A fully functional OAUTH2 / OpenID Connect (OIDC) server to be used in your testsuite"
authors = ["Yaal Coop <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "pytest_iam"}]
keywords = ["oidc", "oauth", "oauth2", "openid", "identity", "pytest", "unit tests", "iam"]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Framework :: Pytest",
]
repository = "https://github.com/pytest-dev/pytest-iam"
documentation = "https://pytest-iam.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.9"
canaille = {version = ">=0.0.54,<1", extras = ["oidc"] }
portpicker = ">=1.6.0"
pytest = ">=7.0.0"
faker = ">=21.0.0"
[tool.poetry.plugins.pytest11]
iam = "pytest_iam"
[tool.poetry.group.dev.dependencies]
authlib = "^1.2.1"
pytest-cov = "^5.0.0"
requests = "^2.31.0"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
myst-parser = "^3.0.0"
shibuya = "^2024.7.13"
sphinx = "^7.0.0"
sphinx-issues = "^4.0.0"
[tool.ruff]
ignore = ["E501", "E722"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
skipsdist = true
envlist =
style
py39
py310
py311
py312
doc
[testenv]
allowlist_externals = poetry
commands =
poetry install
poetry run pytest {posargs}
[testenv:doc]
commands =
poetry install --with doc --without dev
poetry run sphinx-build doc build/sphinx/html
[testenv:style]
commands =
pip install pre-commit
pre-commit run --all-files
"""