mirror of
https://github.com/bndr/pipreqs.git
synced 2025-07-24 02:40:01 +00:00
add optinal support for jupyter notebook
This commit is contained in:
parent
c82c7203c3
commit
6bfb9b8918
7
setup.py
7
setup.py
@ -15,7 +15,11 @@ with open('HISTORY.rst') as history_file:
|
||||
history = history_file.read().replace('.. :changelog:', '')
|
||||
|
||||
requirements = [
|
||||
'docopt', 'yarg', 'nbconvert', 'ipython'
|
||||
'docopt', 'yarg'
|
||||
]
|
||||
|
||||
jupyter_requirements = [
|
||||
'nbconvert', 'ipython'
|
||||
]
|
||||
|
||||
setup(
|
||||
@ -34,6 +38,7 @@ setup(
|
||||
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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user