From: John Mulligan Date: Wed, 15 Apr 2026 19:00:45 +0000 (-0400) Subject: python-common: add entry point for smb ctl to pyproject.toml X-Git-Tag: v21.0.1~17^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4ab4443c188a76b3ec6a4c4eca0e3a69a2abaede;p=ceph.git python-common: add entry point for smb ctl to pyproject.toml Allow invoking the ceph.smb.ctl as a script `ceph-smb-ctl`. Signed-off-by: John Mulligan --- diff --git a/src/python-common/pyproject.toml b/src/python-common/pyproject.toml index a116a62a82d..f55defcf2d2 100644 --- a/src/python-common/pyproject.toml +++ b/src/python-common/pyproject.toml @@ -19,6 +19,9 @@ email = "dev@ceph.io" Homepage = "https://ceph.io" Repository = "https://github.com/ceph/ceph" +[project.scripts] +ceph-smb-ctl = "ceph.smb.ctl.__main__:main" + [build-system] requires = ["setuptools >= 61.0"] build-backend = "setuptools.build_meta"