From 151bbe35ca9fc2de3ca48a24668c2569cb8c56e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Mon, 21 Sep 2020 18:03:53 +0200 Subject: [PATCH] Do not install empty console_scripts entry point The empty 'console_scripts' entry point serves no purpose, and it is rather unlikely for it to contain any script in the near future. Its presence confuses Gentoo missing dependency checks. --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 6796670e..af0c67b5 100755 --- a/setup.py +++ b/setup.py @@ -141,8 +141,6 @@ def run(self): 'pytest11': [ 'pytest_cov = pytest_cov.plugin', ], - 'console_scripts': [ - ] }, cmdclass={ 'build': BuildWithPTH,