From 7ed2eeb4214601ecffd7573eb64ea3a4e4b75a88 Mon Sep 17 00:00:00 2001 From: John Turner Date: Sun, 7 Sep 2025 20:26:02 -0400 Subject: split app logic out of __main__.py --- meson.build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'meson.build') 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) -- cgit v1.2.3