Newer
Older
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
[project]
name = "pretix-keycloak-create-user"
dynamic = ["version"]
description = "Invite Pretix participants to a Keycloak realm."
readme = "README.md"
license = {text = "MIT"}
keywords = ["pretix"]
authors = [
{name = "Fachschaft Informatik TU Dortmund", email = "root@oh14.de"},
]
maintainers = [
{name = "Fachschaft Informatik TU Dortmund", email = "root@oh14.de"},
]
dependencies = [
"requests"
]
[project.entry-points."pretix.plugin"]
pretix_keycloak_create_user = "pretix_keycloak_create_user:PretixPluginMeta"
[project.entry-points."distutils.commands"]
build = "pretix_plugin_build.build:CustomBuild"
[build-system]
requires = [
"setuptools",
"pretix-plugin-build",
]
[project.urls]
homepage = "https://gitlab.fachschaften.org/tudo-fsinfo/admin/pretix-keycloak-create-user"
repository = "https://gitlab.fachschaften.org/tudo-fsinfo/admin/pretix-keycloak-create-user"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretix_keycloak_create_user.__version__"}
[tool.setuptools.packages.find]
include = ["pretix*"]
namespaces = false