Skip to content

Commit b2a4647

Browse files
authored
Merge pull request #1 from ryanlovett/patch-1
Distribute static files via package_data
2 parents 2463050 + 90f4410 commit b2a4647

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import setuptools
2-
from glob import glob
32

43
setuptools.setup(
54
name="nbresuse",
@@ -12,7 +11,5 @@
1211
'psutil',
1312
'notebook',
1413
],
15-
data_files=[
16-
('share/jupyter/nbextensions/nbresuse', glob('nbresuse/static/*'))
17-
]
14+
package_data={'nbresuse': ['static/*']},
1815
)

0 commit comments

Comments
 (0)