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

  1. [tool.poetry]
  2. name = "python-keycloak"
  3. version = "0.0.0"
  4. description = "python-keycloak is a Python package providing access to the Keycloak API."
  5. license = "MIT"
  6. readme = "README.md"
  7. keywords = [ "keycloak", "openid", "oidc" ]
  8. authors = [
  9. "Marcos Pereira <marcospereira.mpj@gmail.com>",
  10. "Richard Nemeth <ryshoooo@gmail.com>"
  11. ]
  12. classifiers=[
  13. "Programming Language :: Python :: 3",
  14. "License :: OSI Approved :: MIT License",
  15. "Development Status :: 3 - Alpha",
  16. "Operating System :: MacOS",
  17. "Operating System :: Unix",
  18. "Operating System :: Microsoft :: Windows",
  19. "Topic :: Utilities",
  20. ]
  21. packages = [
  22. { include = "keycloak", from = "src/" },
  23. { include = "keycloak/**/*.py", from = "src/" },
  24. ]
  25. include = ["LICENSE", "CHANGELOG.md", "CONTRIBUTING.md"]
  26. [tool.poetry.urls]
  27. Documentation = "https://python-keycloak.readthedocs.io/en/latest/"
  28. "Issue tracker" = "https://github.com/marcospereirampj/python-keycloak/issues"
  29. [tool.poetry.dependencies]
  30. python = ">=3.8,<4.0"
  31. requests = ">=2.20.0"
  32. mock = {version = "^4.0.3", optional = true}
  33. alabaster = {version = "^0.7.12", optional = true}
  34. commonmark = {version = "^0.9.1", optional = true}
  35. recommonmark = {version = "^0.7.1", optional = true}
  36. Sphinx = {version = "^6.1.0", optional = true}
  37. sphinx-rtd-theme = {version = "^1.0.0", optional = true}
  38. readthedocs-sphinx-ext = {version = "^2.1.9", optional = true}
  39. m2r2 = {version = "^0.3.2", optional = true}
  40. sphinx-autoapi = {version = "^3.0.0", optional = true}
  41. requests-toolbelt = ">=0.6.0"
  42. deprecation = ">=2.1.0"
  43. jwcrypto = "^1.5.4"
  44. [tool.poetry.extras]
  45. docs = [
  46. "mock",
  47. "alabaster",
  48. "commonmark",
  49. "recommonmark",
  50. "sphinx",
  51. "sphinx-rtd-theme",
  52. "readthedocs-sphinx-ext",
  53. "m2r2",
  54. "sphinx-autoapi",
  55. ]
  56. [tool.poetry.group.dev.dependencies]
  57. tox = ">=4.0.0"
  58. pytest = ">=7.1.2"
  59. pytest-cov = ">=3.0.0"
  60. wheel = ">=0.38.4"
  61. pre-commit = ">=2.19.0"
  62. isort = ">=5.10.1"
  63. black = ">=22.3.0"
  64. flake8 = ">=3.5.0"
  65. flake8-docstrings = ">=1.6.0"
  66. commitizen = ">=2.28.0"
  67. cryptography = ">=42.0.0"
  68. codespell = ">=2.1.0"
  69. darglint = ">=1.8.1"
  70. twine = ">=4.0.2"
  71. freezegun = ">=1.2.2"
  72. [build-system]
  73. requires = ["poetry-core>=1.0.0"]
  74. build-backend = "poetry.core.masonry.api"
  75. [tool.black]
  76. line-length = 99
  77. [tool.isort]
  78. line_length = 99
  79. profile = "black"
  80. [tool.darglint]
  81. enable = "DAR104"