Skip to content

Commit 71ee04f

Browse files
committed
Fix package_data paths in setup.py
1 parent ebdcf8d commit 71ee04f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
python_requires='>=3.9',
2727
packages=find_packages(),
2828
package_dir={'nedry': 'nedry'},
29-
package_data={'nedry': [os.path.join('nedry', 'quotedb.json')]},
29+
package_data={'nedry': ['quotedb.json',
30+
os.path.join('builtin_plugins', 'writing_prompts.txt')]},
3031
include_package_data=True,
3132
zip_safe=False,
3233
install_requires=requirements

0 commit comments

Comments
 (0)