-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (70 loc) · 2.28 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
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
[project]
name = "python-kadmin-rs"
version = "0.0.3"
description = "Python interface to the Kerberos administration interface (kadm5)"
requires-python = ">=3.8,<=3.13"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Marc 'risson' Schmitt", email = "[email protected]" },
{ name = "authentik community", email = "[email protected]" },
]
keywords = ["krb5", "kadmin", "kadm5", "kerberos"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/authentik-community/kadmin-rs"
Documentation = "https://github.com/authentik-community/kadmin-rs"
Repository = "https://github.com/authentik-community/kadmin-rs.git"
[build-system]
requires = ["setuptools", "setuptools-rust", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = { where = ["python-kadmin-rs/python"] }
[[tool.setuptools-rust.ext-modules]]
target = "kadmin._lib"
path = "python-kadmin-rs/Cargo.toml"
strip = "All"
args = ["--no-default-features"]
features = ["client"]
[[tool.setuptools-rust.ext-modules]]
target = "kadmin_local._lib"
path = "python-kadmin-rs/Cargo.toml"
strip = "All"
args = ["--no-default-features"]
features = ["local"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.poetry]
package-mode = false
name = "kadmin-rs"
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.group.dev.dependencies]
black = "*"
build = "*"
cibuildwheel = "*"
mypy = "*"
ruff = "*"
[tool.poetry.group.test.dependencies]
k5test = "*"