summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-07 19:15:25 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-07 19:15:25 -0400
commit1e1323affc98bc91be907b80106cb034aee6f049 (patch)
treecdf5798b3dd9721b188afbabb8d4350ffd2d4aaf
parent983afa5cc6790e2415b71c4fde5602380df44936 (diff)
downloadpypaste-1e1323affc98bc91be907b80106cb034aee6f049.tar.gz
add database module to meson sources
-rw-r--r--meson.build6
1 files changed, 5 insertions, 1 deletions
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)