Skip to content

Commit 9ad60b7

Browse files
committed
Change bolt_cli entrypoint to bolt.cli
1 parent b8c759f commit 9ad60b7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bolt-dev/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ documentation = "https://www.boltpackages.com/docs/"
1515
repository = "https://github.com/boltpackages/bolt-dev"
1616

1717
# Make the CLI available without adding to INSTALLED_APPS
18-
[tool.poetry.plugins.bolt_cli]
18+
[tool.poetry.plugins."bolt.cli"]
1919
"dev" = "bolt.dev:cli"
2020
"pre-commit" = "bolt.dev.precommit:cli"
2121

bolt-pytest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424

2525
# Make the CLI available without adding to INSTALLED_APPS
26-
[tool.poetry.plugins.bolt_cli]
26+
[tool.poetry.plugins."bolt.cli"]
2727
"test" = "bolt.pytest:cli"
2828

2929
# Automatically sets this up with pytest

bolt-vendor/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT"
1212
# readme = "README.md"
1313

1414
# Make the CLI available without adding to INSTALLED_APPS
15-
[tool.poetry.plugins.bolt_cli]
15+
[tool.poetry.plugins."bolt.cli"]
1616
"vendor" = "bolt.vendor:cli"
1717

1818
[tool.poetry.dependencies]

bolt/cli/packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class EntryPointGroup(click.Group):
5656
This is intended for packages that don't go in INSTALLED_PACKAGES.
5757
"""
5858

59-
ENTRYPOINT_NAME = "bolt_cli"
59+
ENTRYPOINT_NAME = "bolt.cli"
6060

6161
def list_commands(self, ctx):
6262
rv = []

0 commit comments

Comments
 (0)