You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.3 KiB
89 lines
2.3 KiB
[tool.poetry]
|
|
name = "python-keycloak"
|
|
version = "0.0.0"
|
|
description = "python-keycloak is a Python package providing access to the Keycloak API."
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
keywords = [ "keycloak", "openid", "oidc" ]
|
|
authors = [
|
|
"Marcos Pereira <marcospereira.mpj@gmail.com>",
|
|
"Richard Nemeth <ryshoooo@gmail.com>"
|
|
]
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 3 - Alpha",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: Unix",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Topic :: Utilities",
|
|
]
|
|
packages = [
|
|
{ include = "keycloak", from = "src/" },
|
|
{ include = "keycloak/**/*.py", from = "src/" },
|
|
]
|
|
include = ["LICENSE", "CHANGELOG.md", "CONTRIBUTING.md"]
|
|
|
|
[tool.poetry.urls]
|
|
Documentation = "https://python-keycloak.readthedocs.io/en/latest/"
|
|
"Issue tracker" = "https://github.com/marcospereirampj/python-keycloak/issues"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.7,<4.0"
|
|
requests = ">=2.20.0"
|
|
python-jose = ">=3.3.0"
|
|
mock = {version = "^4.0.3", optional = true}
|
|
alabaster = {version = "^0.7.12", optional = true}
|
|
commonmark = {version = "^0.9.1", optional = true}
|
|
recommonmark = {version = "^0.7.1", optional = true}
|
|
Sphinx = {version = "^5.3.0", optional = true}
|
|
sphinx-rtd-theme = {version = "^1.0.0", optional = true}
|
|
readthedocs-sphinx-ext = {version = "^2.1.9", optional = true}
|
|
m2r2 = {version = "^0.3.2", optional = true}
|
|
sphinx-autoapi = {version = "^2.0.0", optional = true}
|
|
requests-toolbelt = ">=1.0.0"
|
|
deprecation = ">=2.1.0"
|
|
|
|
[tool.poetry.extras]
|
|
docs = [
|
|
"mock",
|
|
"alabaster",
|
|
"commonmark",
|
|
"recommonmark",
|
|
"sphinx",
|
|
"sphinx-rtd-theme",
|
|
"readthedocs-sphinx-ext",
|
|
"m2r2",
|
|
"sphinx-autoapi",
|
|
]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
tox = ">=4.0.0"
|
|
pytest = ">=7.1.2"
|
|
pytest-cov = ">=3.0.0"
|
|
wheel = ">=0.38.4"
|
|
pre-commit = ">=2.19.0"
|
|
isort = ">=5.10.1"
|
|
black = ">=22.3.0"
|
|
flake8 = ">=3.5.0"
|
|
flake8-docstrings = ">=1.6.0"
|
|
commitizen = ">=2.28.0"
|
|
cryptography = ">=37.0.4"
|
|
codespell = ">=2.1.0"
|
|
darglint = ">=1.8.1"
|
|
twine = ">=4.0.2"
|
|
freezegun = ">=1.2.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 99
|
|
|
|
[tool.isort]
|
|
line_length = 99
|
|
profile = "black"
|
|
|
|
[tool.darglint]
|
|
enable = "DAR104"
|