diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
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) |