forked from getsentry/sentry-auth-google
-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
49 lines (41 loc) · 1.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
[tool.poetry]
name = "sentry-auth-oidc"
version = "9.0.0"
description = "OpenID Connect authentication provider for Sentry"
authors = [
"Max Wittig <max.wittig@siemens.com>",
"Diego Louzán <diego.louzan.ext@siemens.com>",
"Nejc Habjan <nejc.habjan@siemens.com>",
]
license = "Apache 2.0"
readme = "README.rst"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
]
packages = [
{ include = "oidc" }
]
[tool.black]
extend-exclude = "deps"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.dev-dependencies]
black = "^24.3.0"
isort = "^5.7.0"
flake8 = "^3.8.4"
[tool.poetry.group.test.dependencies]
codecov = "^2.1.12"
pytest = "^7.1.3"
fixtures = "^4.1.0"
[tool.isort]
profile = "black"
[tool.poetry.plugins."sentry.apps"]
"oidc" = "oidc.apps.Config"
[tool.pytest.ini_options]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"