From 4893c6b042249beb132670e7a6800f23e256f87d Mon Sep 17 00:00:00 2001 From: Ludovico de Nittis Date: Fri, 2 Apr 2021 11:13:39 +0200 Subject: [PATCH] Add missing import in setup "setuptools" is used in setup.py without being imported first. And this, for example, breaks "python3 setup.py install". Signed-off-by: Ludovico de Nittis --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index efd42c6..83bd9fd 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,8 @@ # Copyright Contributors to the fossdriver project. # SPDX-License-Identifier: BSD-3-Clause OR MIT +import setuptools + with open("README.md", "r") as fh: long_description = fh.read()