From d592880c4bc4c581d8847d96ff73bc319ca1fac2 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Sun, 26 Dec 2021 17:11:37 +0100 Subject: Make cards be part of the Python package data We now load the cards using pkg_resources. This is way better in many aspects: * we can install the package using pip without having issues loading cards * we don't need to chdir to / before running swiftstoryd * we don't need to rely on data_files which is deprecated. Signed-off-by: Olivier Gayot --- setup.cfg | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 6712f5d..5b94f00 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,6 +14,7 @@ classifiers = [options] packages = find: python_requires = >=3.7 +include_package_data = True [options.data_files] share/swiftstory/www/ = @@ -26,13 +27,9 @@ share/swiftstory/www/ = usr/share/swiftstory/www/swiftstory-mobile.js # TODO install jQuery using libjs-jquery usr/share/swiftstory/www/jquery.js -# TODO install cards as package data instead -share/swiftstory/lang/en/cards = - usr/share/swiftstory/lang/en/cards/black.json - usr/share/swiftstory/lang/en/cards/white.json -share/swiftstory/lang/fr/cards = - usr/share/swiftstory/lang/fr/cards/black.json - usr/share/swiftstory/lang/fr/cards/white.json + +[options.package_data] +swiftstory = data/lang/*/cards/*.json [options.entry_points] console_scripts = -- cgit v1.2.3