-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
48 lines (42 loc) · 1.37 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "python-freeipa"
version = "1.0.9"
description = "Lightweight FreeIPA client"
authors = ["OpenNode Team <[email protected]>"]
readme = "README.md"
documentation = "https://python-freeipa.readthedocs.io/"
packages = [{include = "python_freeipa", from = "src"}]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration :: Authentication/Directory",
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "*"
srvlookup = "*"
requests-gssapi = "*"
[tool.poetry.group.test.dependencies]
responses = "*"
pytest = "^8.3.4"
pytest-cov = "^5.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.49"
mkdocstrings = "^0.27.0"
mkdocstrings-python = "^1.12.2"
[tool.pytest.ini_options]
addopts = "--cov=src/python_freeipa/"