From 85b418cb747de416c54b27d499d1d99570d374fb Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Sun, 31 May 2026 15:49:38 +0200 Subject: [PATCH] Switch package entry points to bearhub namespace --- pyproject.toml | 8 ++++---- setup.py | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b5b7b496..f0237b2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,9 +39,9 @@ web = [ ] [project.scripts] -bearhub = "bauh.app:main" -bearhub-tray = "bauh.app:tray" -bearhub-cli = "bauh.cli.app:main" +bearhub = "bearhub.app:main" +bearhub-tray = "bearhub.app:tray" +bearhub-cli = "bearhub.cli.app:main" [project.urls] Repository = "https://github.com/spalencsar/bearhub" @@ -50,7 +50,7 @@ Repository = "https://github.com/spalencsar/bearhub" license-files = ["LICENSE"] [tool.setuptools.dynamic] -version = {attr = "bauh.__version__"} +version = {attr = "bearhub.__version__"} [tool.setuptools.packages.find] exclude = ["tests.*", "tests"] diff --git a/setup.py b/setup.py index c141fc52..2199a5d6 100644 --- a/setup.py +++ b/setup.py @@ -41,9 +41,9 @@ setup( test_suite="tests", entry_points={ "console_scripts": [ - "bearhub=bauh.app:main", - "bearhub-tray=bauh.app:tray", - "bearhub-cli=bauh.cli.app:main" + "bearhub=bearhub.app:main", + "bearhub-tray=bearhub.app:tray", + "bearhub-cli=bearhub.cli.app:main" ] }, include_package_data=True,