diff --git a/requirements.txt b/requirements.txt index 2692414..8d682c4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ click -click-plugins colorama requests>=2.2.1 XlsxWriter ipaddress;python_version<='2.7' -tldextract \ No newline at end of file +tldextract diff --git a/shodan/__main__.py b/shodan/__main__.py index 4093b94..d7078e7 100644 --- a/shodan/__main__.py +++ b/shodan/__main__.py @@ -49,7 +49,6 @@ from shodan.cli.host import HOST_PRINT # Allow 3rd-parties to develop custom commands -from click_plugins import with_plugins from pkg_resources import iter_entry_points # Large subcommands are stored in separate modules @@ -77,8 +76,6 @@ # Define the main entry point for all of our commands -# and expose a way for 3rd-party plugins to tie into the Shodan CLI. -@with_plugins(iter_entry_points('shodan.cli.plugins')) @click.group(context_settings=CONTEXT_SETTINGS) def main(): pass