diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-05 19:46:47 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-05 19:46:47 -0400 |
commit | 429208a700e5c2618d1fe6e09506220a15364f81 (patch) | |
tree | a20194556f2afa033f0f43b142a8dba1ffc911e0 | |
parent | 0a350eaa7a891fc6a9a2daccc4d190da4000db50 (diff) | |
download | pypaste-429208a700e5c2618d1fe6e09506220a15364f81.tar.gz |
install sources with meson
-rw-r--r-- | meson.build | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/meson.build b/meson.build index 4497213..97b9003 100644 --- a/meson.build +++ b/meson.build @@ -4,10 +4,6 @@ python = import('python').find_installation( modules: ['pygments', 'zstandard', 'bozo4'], ) -install_data( - 'src/paste.py', - rename: ['paste'], - install_dir: get_option('bindir'), -) +sources = files('pypaste/__main__.py', 'pypaste/s3.py') -install_data('bin/pypaste', install_dir: get_option('bindir')) +python.install_sources(sources) |