Files
ldapsm/pyproject.toml
Kevin Veen-Birkenbach 7f644fa43d
Some checks failed
CI - tests / Unit tests (make test) (push) Has been cancelled
Release version 1.0.0
2026-01-06 16:25:56 +01:00

29 lines
531 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ldapsm"
version = "1.0.0"
description = "CLI tool to manage OpenLDAP schema snippets under cn=config"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Kevin Veen-Birkenbach" }
]
dependencies = [
"python-ldap>=3.4",
]
[project.scripts]
ldapsm = "ldapsm.__main__:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]