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.
|
|
[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] Changelog = "https://raw.githubusercontent.com/marcospereirampj/python-keycloak/master/CHANGELOG.md" Documentation = "https://python-keycloak.readthedocs.io/en/latest/" "Issue tracker" = "https://github.com/marcospereirampj/python-keycloak/issues"
[tool.poetry.dependencies] python = ">=3.9,<4.0" requests = ">=2.20.0" requests-toolbelt = ">=0.6.0" deprecation = ">=2.1.0" jwcrypto = ">=1.5.4" httpx = ">=0.23.2" async-property = ">=0.2.2"
[tool.poetry.group.docs.dependencies] alabaster = ">=0.7.0" commonmark = ">=0.9.1" recommonmark = ">=0.7.1" Sphinx = ">=7.0.0" sphinx-rtd-theme = ">=1.0.0" readthedocs-sphinx-ext = ">=2.1.9" m2r2 = ">=0.3.2" sphinx-autoapi = ">=3.0.0" setuptools = ">=70.0.0"
[tool.poetry.group.dev.dependencies] tox = ">=4.0.0" pytest = ">=7.1.2" pytest-cov = ">=3.0.0" pytest-asyncio = ">=0.23.7" wheel = ">=0.38.4" pre-commit = ">=3.5.0" isort = ">=5.10.1" black = ">=22.3.0" flake8 = ">=7.0.0" flake8-docstrings = ">=1.6.0" commitizen = ">=2.28.0" cryptography = ">=42.0.0" codespell = ">=2.1.0" darglint = ">=1.8.1" twine = ">=4.0.2" freezegun = ">=1.2.2" docutils = "<0.21"
[[tool.poetry.source]] name = "PyPI" priority = "primary"
[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"
|