-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
87 lines (77 loc) · 2.14 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "ackc"
version = "1.0.0"
description = "API Client for Keycloak"
authors = [{ name = "Phillip Sitbon", email = "phillip.sitbon@gmail.com"}]
readme = "readme.md"
license-files = ["license.md"]
license = "Apache-2.0"
requires-python = ">=3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"keycloak",
"api",
"client",
"authentication",
"authorization",
"identity",
"access management",
"openid connect",
"oauth2",
"sso",
"single sign-on",
"security",
"jwt",
"rbac",
"identity provider",
"enterprise authentication",
]
packages = [
{ include = "ackc" },
{ include = "gen", format = "sdist" },
]
dependencies = [
"attrs>=25.3.0",
"niquests>=3.14.1",
]
[project.urls]
Homepage = "https://github.com/acie-io/ackc"
Repository = "https://github.com/acie-io/ackc.git"
Documentation = "https://github.com/acie-io/ackc#readme"
Issues = "https://github.com/acie-io/ackc/issues"
"Release Notes" = "https://github.com/acie-io/ackc/releases"
[dependency-groups]
dev = [
"openapi-python-client>=0.25.3",
]
[project.scripts]
auth-token = "ackc.tool.token:main"
auth-mc = "ackc.tool.mc:main"
auth-realm-export = "ackc.tool.export_realm:main"
ackc-init = "ackc.tool.init:main"
[tool.hatch.build.targets.wheel.force-include]
".env.example" = "ackc/.env.example"
"compose.yaml" = "ackc/compose.yaml"
[tool.hatch.build.targets.sdist]
exclude = [
".github",
".idea",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"