summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-07 20:26:02 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-07 20:26:02 -0400
commit7ed2eeb4214601ecffd7573eb64ea3a4e4b75a88 (patch)
tree7fd6e9c2e62b04154d3d4e0df0aa1eeb56aa3af6 /meson.build
parentcb3eca5ceaebb50e6def593c928e857aa089c34a (diff)
downloadpypaste-7ed2eeb4214601ecffd7573eb64ea3a4e4b75a88.tar.gz
split app logic out of __main__.py
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build7
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)