8000 IPython Widget by blink1073 · Pull Request #5754 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

IPython Widget #5754

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

Merged
merged 4 commits into from
May 4, 2016
Merged
Show file tree
Hide file tree
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
Update the package data
  • Loading branch information
blink1073 committed May 2, 2016
commit 1ec611a7a3ff1edd7e2358d1e0b7d0880b7bf83a
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,14 @@ def run(self):
ext_modules=ext_modules,
package_dir=package_dir,
package_data=package_data,
include_package_data=True,
data_files=[
('share/jupyter/nbextensions/matplotlib', [
'lib/matplotlib/backends/web_backend/js/extension.js',
'lib/matplotlib/backends/web_backend/js/nbagg_mpl.js',
'lib/matplotlib/backends/web_backend/js/mpl.js',
]),
],
classifiers=classifiers,
download_url="http://matplotlib.org/users/installing.html",

Expand Down
2 changes: 1 addition & 1 deletion setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ def get_package_data(self):
'backends/web_backend/jquery/css/themes/base/*.min.css',
'backends/web_backend/jquery/css/themes/base/images/*',
'backends/web_backend/css/*.*',
'backends/web_backend/nbextension/*.js',
'backends/web_backend/js/*.js',
'backends/Matplotlib.nib/*',
'mpl-data/stylelib/*.mplstyle',
]}
Expand Down
0