Browse Source

Include necessary files for installing new extensions

Jason Grout 8 years ago
parent
commit
0917237c01
2 changed files with 5 additions and 1 deletions
  1. 4 0
      MANIFEST.in
  2. 1 1
      setupbase.py

+ 4 - 0
MANIFEST.in

@@ -8,4 +8,8 @@ include README.md
 include package.json
 include setupbase.py
 
+include jupyterlab/package.json
+include jupyterlab/webpack.config.js
+include jupyterlab/index.template.js
+
 prune jupyterlab/tests

+ 1 - 1
setupbase.py

@@ -64,7 +64,7 @@ def find_package_data():
     Find package_data.
     """
     return {
-        'jupyterlab': ['build/*', 'lab.html']
+        'jupyterlab': ['build/*', 'lab.html', 'package.json', 'index.template.js', 'webpack.config.js']
     }