-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 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
[tool.poetry]
name = "oauthclientbridge"
version = "2.0.0"
readme = "README.md"
description = "Bridge OAuth2 Authorization Code Grants to Clients Grants"
repository = "https://github.com/adamcik/oauthclientbridge"
authors = ["Thomas Adamcik <[email protected]>"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.9"
Flask = "^2.1.1"
cryptography = "^36.0.2"
prometheus-client = "^0.14.1"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
flake8-black = "*"
flake8-bugbear = "*"
flake8-isort = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
requests_mock = "*"
types-requests = "*"
[tool.black]
target-version = ["py39"]
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "88"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"