
This reverts #23446 and instead patches setup.py to use setuptools instead of distutils which automatically generates the necessary jupyter-console script.
12 lines
219 B
Diff
12 lines
219 B
Diff
--- setup.py
|
|
+++ setup.py
|
|
@@ -51,7 +51,7 @@
|
|
import os
|
|
from glob import glob
|
|
|
|
-from distutils.core import setup
|
|
+from setuptools import setup
|
|
|
|
pjoin = os.path.join
|
|
here = os.path.abspath(os.path.dirname(__file__))
|