-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.63 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-freeipa"
version = "1.0.10"
description = "Lightweight FreeIPA client"
readme = "README.md"
authors = [{ name = "OpenNode Team", email = "info@opennodecloud.com" }]
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["freeipa", "ipa", "authentication", "directory"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
# Require always
dependencies = [
"requests",
]
# Optional dependencies exposed as extras
[project.optional-dependencies]
gssapi = ["requests-gssapi"]
srv = ["srvlookup"]
all = [
"requests-gssapi",
"srvlookup",
]
test = [
"responses",
"pytest>=8.3.4",
"pytest-cov>=5.0.0",
]
dev = [
"pre-commit>=3.5.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.49",
"mkdocstrings>=0.27.0",
"mkdocstrings-python>=1.12.2",
]
[project.urls]
Documentation = "https://python-freeipa.readthedocs.io/"
Homepage = "https://python-freeipa.readthedocs.io/"
# Hatchling configuration for package discovery
[tool.hatch.build.targets.wheel]
packages = ["src/python_freeipa"]
[tool.pytest.ini_options]
addopts = "--cov=src/python_freeipa/"