Skip to content

Commit ae3d27c

Browse files
committed
add the correct json in setup.py
1 parent edc21fc commit ae3d27c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/simple/setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ def get_data_files():
77
"""Get the data files for the package.
88
"""
99
data_files = [
10-
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/simple_ext.json']),
10+
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/simple_ext1.json']),
11+
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/simple_ext2.json']),
12+
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/simple_ext11.json']),
1113
]
1214
def add_data_files(path):
1315
for (dirpath, dirnames, filenames) in os.walk(path):
@@ -36,6 +38,7 @@ def add_data_files(path):
3638
'pytest-cov',
3739
'pylint',
3840
],
41+
include_package_data=True,
3942
data_files = get_data_files(),
4043
entry_points = {
4144
'console_scripts': [

0 commit comments

Comments
 (0)