From 1e1323affc98bc91be907b80106cb034aee6f049 Mon Sep 17 00:00:00 2001 From: John Turner Date: Sun, 7 Sep 2025 19:15:25 -0400 Subject: add database module to meson sources --- meson.build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7551197..467f2c3 100644 --- a/meson.build +++ b/meson.build @@ -4,6 +4,10 @@ python = import('python').find_installation( modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'], ) -sources = files('pypaste/__main__.py', 'pypaste/s3.py') +sources = files( + 'pypaste/__main__.py', + 'pypaste/database/__init__.py', + 'pypaste/s3.py', +) python.install_sources(sources, preserve_path: true) -- cgit v1.2.3