diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/meson.build b/meson.build index 41ebb91..7c9ab84 100644 --- a/meson.build +++ b/meson.build @@ -4,9 +4,13 @@ python = import('python').find_installation( modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'], ) -sources = [] - -subdir('pypaste') +sources = files( + 'pypaste/__init__.py', + 'pypaste/__main__.py', + 'pypaste/s3/__init__.py', + 'pypaste/s3/bucket.py', + 'pypaste/sqlite/__init__.py', +) python.install_sources(sources, preserve_path: true) |