From fbc9187d0e6a2ba32345a683ac2358c24e42042a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tadej=20Borov=C5=A1ak?= Date: Fri, 15 Nov 2019 13:09:38 +0100 Subject: [PATCH] Add a missing entry point option to setup.cfg This package did not specify its entry point for molecule driver. And because of that, molecule failed to pick it up while running. This commit is a minimal fix to get the driver to talk with molecule. --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index ea53b17..3e1c916 100644 --- a/setup.cfg +++ b/setup.cfg @@ -84,3 +84,7 @@ where = . [flake8] max-line-length = 88 + +[options.entry_points] +molecule.driver = + hetznercloud = molecule_hetznercloud.hetznercloud:HetznerCloud