Skip to content

Commit

Permalink
add optinal support for jupyter notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando-crz committed Oct 17, 2023
1 parent c82c720 commit 6bfb9b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
history = history_file.read().replace('.. :changelog:', '')

requirements = [
'docopt', 'yarg', 'nbconvert', 'ipython'
'docopt', 'yarg'
]

jupyter_requirements = [
'nbconvert', 'ipython'
]

setup(
Expand All @@ -34,6 +38,7 @@
include_package_data=True,
package_data={'': ['stdlib', 'mapping']},
install_requires=requirements,
extras_require={"jupyter":jupyter_requirements},

Check failure on line 41 in setup.py

View workflow job for this annotation

GitHub Actions / Lint

[flake8] reported by reviewdog 🐶 missing whitespace after ':' Raw Output: ./setup.py:41:30: E231 missing whitespace after ':'
license='Apache License',
zip_safe=False,
keywords='pip requirements imports',
Expand Down

0 comments on commit 6bfb9b8

Please sign in to comment.