diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-09 19:29:48 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-09 19:33:07 -0400 |
commit | e6db914af092e4ddcfd865e8d23852579755d224 (patch) | |
tree | 41b43398b9f31d265bbc81980c9b7bfd605339af /meson.build | |
parent | fa39a16ee4592514877530f2e4ec58c3dcf2c12c (diff) | |
download | pypaste-e6db914af092e4ddcfd865e8d23852579755d224.tar.gz |
rewrite to support modular storage backends
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/meson.build b/meson.build index 9bfcaca..87ad91c 100644 --- a/meson.build +++ b/meson.build @@ -4,11 +4,8 @@ python = import('python').find_installation( modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'], ) -sources = files( - 'pypaste/__init__.py', - 'pypaste/__main__.py', - 'pypaste/database.py', - 'pypaste/s3.py', -) +sources = [] + +subdir('pypaste') python.install_sources(sources, preserve_path: true) |