From 549b136a041402053d0620880405e16f524da2d9 Mon Sep 17 00:00:00 2001 From: Satoru SATOH Date: Sat, 12 Sep 2020 16:54:27 +0900 Subject: [PATCH] fix: add runtime dependency to setuptools yamllint depends on pkg_resources.load_entry_point from setuptools to make its command working, so this runtime dependency to setuptools is necessary to be listed. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 0aa11d0..246c468 100644 --- a/setup.cfg +++ b/setup.cfg @@ -54,6 +54,7 @@ include_package_data = True install_requires = pathspec >= 0.5.3 pyyaml + setuptools test_suite = tests