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.

87 lines
2.2 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. Changelog = "https://raw.githubusercontent.com/marcospereirampj/python-keycloak/master/CHANGELOG.md"
  28. Documentation = "https://python-keycloak.readthedocs.io/en/latest/"
  29. "Issue tracker" = "https://github.com/marcospereirampj/python-keycloak/issues"
  30. [tool.poetry.dependencies]
  31. python = ">=3.8,<4.0"
  32. requests = ">=2.20.0"
  33. requests-toolbelt = ">=0.6.0"
  34. deprecation = ">=2.1.0"
  35. jwcrypto = ">=1.5.4"
  36. httpx = ">=0.23.2"
  37. async-property = ">=0.2.2"
  38. [tool.poetry.group.docs.dependencies]
  39. alabaster = ">=0.7.0"
  40. commonmark = ">=0.9.1"
  41. recommonmark = ">=0.7.1"
  42. Sphinx = ">=7.0.0"
  43. sphinx-rtd-theme = ">=1.0.0"
  44. readthedocs-sphinx-ext = ">=2.1.9"
  45. m2r2 = ">=0.3.2"
  46. sphinx-autoapi = ">=3.0.0"
  47. setuptools = ">=70.0.0"
  48. [tool.poetry.group.dev.dependencies]
  49. tox = ">=4.0.0"
  50. pytest = ">=7.1.2"
  51. pytest-cov = ">=3.0.0"
  52. pytest-asyncio = ">=0.23.7"
  53. wheel = ">=0.38.4"
  54. pre-commit = ">=3.5.0"
  55. isort = ">=5.10.1"
  56. black = ">=22.3.0"
  57. flake8 = { version=">=7.0.0", python=">=3.8.1,<4.0" }
  58. flake8-docstrings = ">=1.6.0"
  59. commitizen = ">=2.28.0"
  60. cryptography = ">=42.0.0"
  61. codespell = ">=2.1.0"
  62. darglint = ">=1.8.1"
  63. twine = ">=4.0.2"
  64. freezegun = ">=1.2.2"
  65. docutils = "<0.21"
  66. [[tool.poetry.source]]
  67. name = "PyPI"
  68. priority = "primary"
  69. [build-system]
  70. requires = ["poetry-core>=1.0.0"]
  71. build-backend = "poetry.core.masonry.api"
  72. [tool.black]
  73. line-length = 99
  74. [tool.isort]
  75. line_length = 99
  76. profile = "black"
  77. [tool.darglint]
  78. enable = "DAR104"