40 lines
948 B
TOML
40 lines
948 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "jwt-cli"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Walter Oggioni", email="oggioni.walter@gmail.com" },
|
|
]
|
|
description = "JWT command line utilities"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"jwcrypto >= 1.5.6",
|
|
'typing_extensions==4.7.1',
|
|
'pwo >= 0.0.2'
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://gitea.woggioni.net/woggioni/jwt-cli"
|
|
"Bug Tracker" = "https://gitea.woggioni.net/woggioni/jwt-cli/issues"
|
|
|
|
[project.scripts]
|
|
jwt = "jwt_cli:main"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
disallow_untyped_defs = true
|
|
show_error_codes = true
|
|
no_implicit_optional = true
|
|
warn_return_any = true
|
|
warn_unused_ignores = true
|
|
exclude = ["scripts", "docs", "test"]
|
|
strict = true |