Skip to content

Commit

Permalink
Fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
jasongrout committed Jul 11, 2019
1 parent 8fa1eee commit e21354d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
14 changes: 7 additions & 7 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ include LICENSE.txt
include README.md

include setupbase.py
include pytest.ini
include .coverage.rc
# include pytest.ini
# include .coveragerc

include package.json
include webpack.config.js
# include package.json
# include webpack.config.js
include ipymidicontrols/labextension/*.tgz

# Documentation
Expand All @@ -20,12 +20,12 @@ prune docs/dist
graft examples

# Tests
graft tests
prune tests/build
# graft tests
# prune tests/build

# Javascript files
graft ipymidicontrols/nbextension
graft src
# graft src
prune **/node_modules
prune coverage
prune lib
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
],
"files": [
"lib/**/*.js",
"dist/*.js"
"lib/*.d.ts",
"lib/*.js.map",
"dist/*.js",
"dist/*.js.map"
],
"homepage": "https://github.com/jupyter-widgets/midicontrols",
"bugs": {
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@
'recommonmark',
'sphinx_rtd_theme',
'nbsphinx>=0.2.13,<0.4.0',
'jupyter_sphinx',
'nbsphinx-link',
'pytest_check_links',
'pypandoc',
Expand Down

0 comments on commit e21354d

Please sign in to comment.