From a7feda02ec2c5fd4806d9d462aaef8831c5fb246 Mon Sep 17 00:00:00 2001 From: Inex Code Date: Wed, 12 Apr 2023 17:55:41 +0300 Subject: [PATCH] fix: Include the translation files in the project --- MANIFEST.in | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a91ced3 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include selfprivacy_api/locales *.json diff --git a/setup.py b/setup.py index 51606b6..1fde917 100755 --- a/setup.py +++ b/setup.py @@ -7,4 +7,5 @@ setup( scripts=[ "selfprivacy_api/app.py", ], + include_package_data=True )