mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 20:34:16 +02:00
Switch package entry points to bearhub namespace
This commit is contained in:
@@ -39,9 +39,9 @@ web = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
bearhub = "bauh.app:main"
|
bearhub = "bearhub.app:main"
|
||||||
bearhub-tray = "bauh.app:tray"
|
bearhub-tray = "bearhub.app:tray"
|
||||||
bearhub-cli = "bauh.cli.app:main"
|
bearhub-cli = "bearhub.cli.app:main"
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Repository = "https://github.com/spalencsar/bearhub"
|
Repository = "https://github.com/spalencsar/bearhub"
|
||||||
@@ -50,7 +50,7 @@ Repository = "https://github.com/spalencsar/bearhub"
|
|||||||
license-files = ["LICENSE"]
|
license-files = ["LICENSE"]
|
||||||
|
|
||||||
[tool.setuptools.dynamic]
|
[tool.setuptools.dynamic]
|
||||||
version = {attr = "bauh.__version__"}
|
version = {attr = "bearhub.__version__"}
|
||||||
|
|
||||||
[tool.setuptools.packages.find]
|
[tool.setuptools.packages.find]
|
||||||
exclude = ["tests.*", "tests"]
|
exclude = ["tests.*", "tests"]
|
||||||
|
|||||||
6
setup.py
6
setup.py
@@ -41,9 +41,9 @@ setup(
|
|||||||
test_suite="tests",
|
test_suite="tests",
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": [
|
"console_scripts": [
|
||||||
"bearhub=bauh.app:main",
|
"bearhub=bearhub.app:main",
|
||||||
"bearhub-tray=bauh.app:tray",
|
"bearhub-tray=bearhub.app:tray",
|
||||||
"bearhub-cli=bauh.cli.app:main"
|
"bearhub-cli=bearhub.cli.app:main"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
|||||||
Reference in New Issue
Block a user