From 1445cf82fb31d960fcf6d5cadc1a6b1411c8be8e Mon Sep 17 00:00:00 2001 From: Ro Date: Mon, 26 Feb 2024 20:17:36 -0500 Subject: [PATCH] Include images, fonts, and css files in package_data in setup.py --- client/setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/client/setup.py b/client/setup.py index de19a39c8a..e8f26cce59 100644 --- a/client/setup.py +++ b/client/setup.py @@ -25,6 +25,15 @@ python_requires=">=3.5", url="https://github.com/freedomofpress/securedrop-client", packages=setuptools.find_packages(include=["securedrop_client", "securedrop_client.*"]), + package_data={ + "": [ + "resources/*.css", + "resources/*.ttf", + "resources/*.gif", + "resources/*.gif", + "resources/*.svg", + ] + }, include_package_data=True, classifiers=[ "Development Status :: 3 - Alpha",