-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
4 changed files
with
27 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
mkdocs | ||
mkdocs-click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
::: mkdocs-click | ||
:module: pulp_cli | ||
:command: main | ||
:prog_name: pulp | ||
:depth: 0 | ||
:list_subcommands: false | ||
:style: plain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,20 @@ | ||
import typing as t | ||
from types import ModuleType | ||
from typing import Any, Dict, Optional | ||
|
||
import click | ||
import pkg_resources | ||
|
||
__version__ = "0.22.0.dev" | ||
_main: Optional[click.Group] = None | ||
|
||
|
||
def load_plugins() -> click.Group: | ||
global _main | ||
|
||
############################################################################## | ||
# Load plugins | ||
# https://packaging.python.org/guides/creating-and-discovering-plugins/#using-package-metadata | ||
discovered_plugins: Dict[str, ModuleType] = { | ||
entry_point.name: entry_point.load() | ||
for entry_point in pkg_resources.iter_entry_points("pulp_cli.plugins") | ||
} | ||
_main = discovered_plugins["common"].main | ||
assert isinstance(_main, click.Group) | ||
for plugin in discovered_plugins.values(): | ||
if hasattr(plugin, "mount"): | ||
plugin.mount(_main, discovered_plugins=discovered_plugins) | ||
return _main | ||
|
||
|
||
def main() -> Any: | ||
if _main is None: | ||
load_plugins() | ||
assert _main is not None | ||
return _main() | ||
############################################################################## | ||
# Load plugins | ||
# https://packaging.python.org/guides/creating-and-discovering-plugins/#using-package-metadata | ||
discovered_plugins: t.Dict[str, ModuleType] = { | ||
entry_point.name: entry_point.load() | ||
for entry_point in pkg_resources.iter_entry_points("pulp_cli.plugins") | ||
} | ||
main: click.Group = discovered_plugins["common"].main | ||
assert isinstance(main, click.Group) | ||
for plugin in discovered_plugins.values(): | ||
if hasattr(plugin, "mount"): | ||
plugin.mount(main, discovered_plugins=discovered_plugins) |