diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-07 20:26:02 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-07 20:26:02 -0400 |
commit | 7ed2eeb4214601ecffd7573eb64ea3a4e4b75a88 (patch) | |
tree | 7fd6e9c2e62b04154d3d4e0df0aa1eeb56aa3af6 /meson.build | |
parent | cb3eca5ceaebb50e6def593c928e857aa089c34a (diff) | |
download | pypaste-7ed2eeb4214601ecffd7573eb64ea3a4e4b75a88.tar.gz |
split app logic out of __main__.py
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 646a141..9bfcaca 100644 --- a/meson.build +++ b/meson.build @@ -4,6 +4,11 @@ python = import('python').find_installation( modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'], ) -sources = files('pypaste/__main__.py', 'pypaste/database.py', 'pypaste/s3.py') +sources = files( + 'pypaste/__init__.py', + 'pypaste/__main__.py', + 'pypaste/database.py', + 'pypaste/s3.py', +) python.install_sources(sources, preserve_path: true) |