-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (36 loc) · 1009 Bytes
/
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
[tool.poetry]
name = "shib-keygen-api"
version = "0.1.0"
description = "An API which generates Shibboleth SP/SAML2 metadata certificate, keys and stores them in e.g. Vault"
authors = ["Simon Lundström <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
flask = "^2.3"
hvac = { version = "^1.2", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
pylint = "^2.17.5"
black = "^23.7.0"
mypy = "^1.5.1"
[tool.poetry.extras]
vault = ["hvac"]
[tool.poetry.plugins."shib_keygen_api.plugins"]
stdout = "shib_keygen_api.plugins.stdout:Stdout"
dir = "shib_keygen_api.plugins.dir:Dir"
vault = "shib_keygen_api.plugins.vault:Vault"
[tool.pylint]
[tool.pylint.master]
disable= [
'missing-docstring',
]
output-format = 'parseable'
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
show_error_codes = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"