From a864cc7b7200e755fe7135b67f4e9b41cf6a6085 Mon Sep 17 00:00:00 2001 From: Kevin Le Date: Mon, 14 Nov 2022 11:48:07 -0800 Subject: [PATCH] Remove the `scripts` portion of setup.py scripts is deprecated by entry_points, and when both exist it causes errors for some PEP-compliant installers --- setup.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.py b/setup.py index 81095f6..3940825 100755 --- a/setup.py +++ b/setup.py @@ -80,9 +80,6 @@ def main(): 'jupyter-nbextensions_configurator = jupyter_nbextensions_configurator.application:main', # noqa ], }, - scripts=[os.path.join('scripts', p) for p in [ - 'jupyter-nbextensions_configurator', - ]], classifiers=[ 'Intended Audience :: End Users/Desktop', 'Intended Audience :: Science/Research',