-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0eac37a
commit 5dd3fbb
Showing
15 changed files
with
113 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: voila | ||
dependencies: | ||
- ipyvolume | ||
- bqplot | ||
- scipy | ||
- pip: | ||
- https://github.com/QuantStack/voila/master.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"NotebookApp": { | ||
"nbserver_extensions": { | ||
"voila.server_extension": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ class NPM(Command): | |
|
||
node_modules = os.path.join(node_root, 'node_modules') | ||
|
||
lib_root = os.path.join(here, 'voila', 'static', 'dist') | ||
lib_root = os.path.join(here, 'voila', 'static') | ||
targets = [ | ||
os.path.join(lib_root, 'libwidgets.js') | ||
] | ||
|
@@ -137,7 +137,10 @@ def run(self): | |
'description': 'Serving read-only live Jupyter notebooks', | ||
'packages': find_packages(), | ||
'zip_safe': False, | ||
'data_files': [('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/voila.json'])], | ||
'data_files': [ | ||
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/voila.json']), | ||
('etc/jupyter/jupyter_notebook_config.d', ['etc/jupyter/jupyter_notebook_config.d/voila.json']) | ||
], | ||
'cmdclass': { | ||
'build_py': js_prerelease(build_py), | ||
'egg_info': js_prerelease(egg_info), | ||
|
@@ -147,8 +150,7 @@ def run(self): | |
'package_data': { | ||
'voila': [ | ||
'templates/*', | ||
'static/*', | ||
'static/dist/*', | ||
'static/*' | ||
] | ||
}, | ||
'entry_points': { | ||
|
@@ -159,7 +161,7 @@ def run(self): | |
'install_requires': [ | ||
'jupyter_server', | ||
'nbconvert>=5.4,<6', | ||
'whatchdog' | ||
'watchdog' | ||
], | ||
'author': 'QuantStack', | ||
'author_email': '[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.