Include vendored .txt files in package, refs #2434

This commit is contained in:
Simon Willison 2024-10-07 10:13:27 -07:00
commit 4557036fc0

View file

@ -38,7 +38,9 @@ setup(
"CI": "https://github.com/simonw/datasette/actions?query=workflow%3ATest",
},
packages=find_packages(exclude=("tests",)),
package_data={"datasette": ["templates/*.html"]},
package_data={
"datasette": ["templates/*.html", "vendored/**/*.txt"],
},
include_package_data=True,
python_requires=">=3.7",
install_requires=[