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.

80 lines
2.1 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", "CODEOWNERS", "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.7"
  31. requests = "^2.20.0"
  32. python-jose = "^3.3.0"
  33. urllib3 = "^1.26.0"
  34. mock = {version = "^4.0.3", optional = true}
  35. alabaster = {version = "^0.7.12", optional = true}
  36. commonmark = {version = "^0.9.1", optional = true}
  37. recommonmark = {version = "^0.7.1", optional = true}
  38. Sphinx = {version = "^5.0.2", optional = true}
  39. sphinx-rtd-theme = {version = "^1.0.0", optional = true}
  40. readthedocs-sphinx-ext = {version = "^2.1.8", optional = true}
  41. m2r2 = {version = "^0.3.2", optional = true}
  42. sphinx-autoapi = {version = "^1.8.4", optional = true}
  43. [tool.poetry.dev-dependencies]
  44. tox = "^3.25.0"
  45. pytest = "^7.1.2"
  46. pytest-cov = "^3.0.0"
  47. wheel = "^0.37.1"
  48. pre-commit = "^2.19.0"
  49. isort = "^5.10.1"
  50. black = "^22.3.0"
  51. flake8 = "^3.5.0"
  52. flake8-docstrings = "^1.6.0"
  53. commitizen = "^2.28.0"
  54. [tool.poetry.extras]
  55. docs = [
  56. "mock",
  57. "alabaster",
  58. "commonmark",
  59. "recommonmark",
  60. "sphinx",
  61. "sphinx-rtd-theme",
  62. "readthedocs-sphinx-ext",
  63. "m2r2",
  64. "sphinx-autoapi",
  65. ]
  66. [build-system]
  67. requires = ["poetry-core>=1.0.0"]
  68. build-backend = "poetry.core.masonry.api"
  69. [tool.black]
  70. line-length = 99
  71. [tool.isort]
  72. line_length = 99
  73. profile = "black"