-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.04 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "keycloak-manager"
version = "0.1.2"
description = "A simple Python package to work with Keycloak users and login systems"
authors = ["Abdullah Alqahtani <abdullah@anqorithm.com>"]
readme = "README.md"
packages = [{include = "keycloak_manager"}]
license = "MIT"
homepage = "https://github.com/anqorithm/keycloak-manager"
repository = "https://github.com/anqorithm/keycloak-manager"
keywords = ["keycloak", "authentication", "user-management", "tokens"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security"
]
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
pydantic = "^2.10.4"
email-validator = "^2.2.0"
jwt = "^1.3.1"
pyjwt = "^2.10.1"
faker = "^33.1.0"
[tool.poetry.group.dev.dependencies]
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"