From 6bfb9b8918e4b60a2e48afec534b2df20113da32 Mon Sep 17 00:00:00 2001 From: fernandocrz Date: Tue, 17 Oct 2023 17:47:14 -0300 Subject: [PATCH] add optinal support for jupyter notebook --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1058477..ad9c71f 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,11 @@ history = history_file.read().replace('.. :changelog:', '') requirements = [ - 'docopt', 'yarg', 'nbconvert', 'ipython' + 'docopt', 'yarg' +] + +jupyter_requirements = [ + 'nbconvert', 'ipython' ] setup( @@ -34,6 +38,7 @@ include_package_data=True, package_data={'': ['stdlib', 'mapping']}, install_requires=requirements, + extras_require={"jupyter":jupyter_requirements}, license='Apache License', zip_safe=False, keywords='pip requirements imports',