Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Fixes to work with Notebook 4.3+ #44

Merged
merged 4 commits into from
Mar 22, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Request notebook 4.3+ for this plugin
  • Loading branch information
ccordoba12 committed Mar 12, 2017
commit 177edffce8a1a93a783cd8a0a9e7d3d52e508937
40 changes: 19 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,24 @@
from setuptools import find_packages, setup
from spyder_notebook import __version__

REQUIREMENTS = ['spyder>=3', 'notebook']
REQUIREMENTS = ['spyder>=3', 'notebook>=4.3']

setup(
name='spyder-notebook',
version=__version__,
keywords='spyder jupyter notebook',
url='https://github.com/spyder-ide/spyder-notebook',
license='MIT',
author='Spyder Development Team',
description='Jupyter notebook integration with Spyder',
long_description="This is a initial implementation of "
"the notebook running inside Spyder "
"as a plugin.",
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=REQUIREMENTS,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python 2.7',
'Programming Language :: Python 3'
])
name='spyder-notebook',
version=__version__,
keywords='spyder jupyter notebook',
url='https://github.com/spyder-ide/spyder-notebook',
license='MIT',
author='Spyder Development Team',
description='Jupyter notebook integration with Spyder',
long_description="This package allows the Jupyter notebook "
"to run inside Spyder as a plugin.",
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=REQUIREMENTS,
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python 2.7',
'Programming Language :: Python 3']
)