diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-31 15:12:25 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-31 15:12:25 -0400 |
commit | 77aed748d2003a547662fb035fa6f9b13e2cb11f (patch) | |
tree | 66b8d618ba0f449e2826da5a7fa2acdfe775bf83 /meson.build | |
parent | a55fa6f0d434b2f52852859a10341050b4405ee9 (diff) | |
download | pypaste-77aed748d2003a547662fb035fa6f9b13e2cb11f.tar.gz |
create meson.build
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..c27e9eb --- /dev/null +++ b/meson.build @@ -0,0 +1,9 @@ +project('paste') + +python = import('python').find_installation(modules: ['pygments', 'zstandard']) + +install_data( + 'src/paste.py', + rename: ['paste'], + install_dir: get_option('bindir'), +) |