-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (31 loc) · 926 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
[tool.poetry]
name = "joserfc-wrapper"
version = "0.2.3"
description = "joserfc-wrapper is a library for easy use of JWT and automatic management of signature keys."
authors = ["Lubomir Spacek <[email protected]>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.10"
joserfc = "^0.9.0"
hvac = {extras = ["parser"], version = "^2.1.0"}
fire = "^0.5.0"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
pytest = "^7.4.4"
tox = "^4.12.0"
pylint = "^3.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
genjw = "joserfc_wrapper.cli.GenJWT:run"
[tool.poetry.urls]
"Homepage" = "https://github.com/heximcz/joserfc-wrapper"
"Issues" = "https://github.com/heximcz/joserfc-wrapper/issues"
[tool.black]
line-length = 80
target-version = ['py310']